summaryrefslogtreecommitdiff
path: root/builds/amiga/src/base/ftdebug.c
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2005-06-08 11:56:55 +0000
committerWerner Lemberg <wl@gnu.org>2005-06-08 11:56:55 +0000
commit473e27d4fe337f84f731dc363c4c2a6c1ffa4e3e (patch)
treedb54e93339c02727fe35d1953540e29f4ad4c791 /builds/amiga/src/base/ftdebug.c
parent057ff3642802db0d567c5e588a68d6b805413864 (diff)
downloadfreetype2-473e27d4fe337f84f731dc363c4c2a6c1ffa4e3e.tar.gz
* builds/amiga/*: Added copyright notes, reworked some comments.
Diffstat (limited to 'builds/amiga/src/base/ftdebug.c')
-rw-r--r--builds/amiga/src/base/ftdebug.c55
1 files changed, 31 insertions, 24 deletions
diff --git a/builds/amiga/src/base/ftdebug.c b/builds/amiga/src/base/ftdebug.c
index 0f4b81a16..75cc66dca 100644
--- a/builds/amiga/src/base/ftdebug.c
+++ b/builds/amiga/src/base/ftdebug.c
@@ -1,32 +1,11 @@
-/*
- * TetiSoft: replaced vprintf() with KVPrintF(), commented out exit(),
- * and replaced getenv() with GetVar()
- */
-
-#include <exec/types.h>
-#include <utility/tagitem.h>
-#include <dos/exall.h>
-#include <dos/var.h>
-#define __NOLIBBASE__
-#define __NOLOBALIFACE__
-#define __USE_INLINE__
-#include <proto/dos.h>
-#include <clib/debug_protos.h>
-
-#ifndef __amigaos4__
-extern struct Library *DOSBase;
-#else
-extern struct DOSIFace *IDOS;
-#endif
-
/***************************************************************************/
/* */
/* ftdebug.c */
/* */
/* Debugging and logging component (body). */
/* */
-/* Copyright 1996-2001, 2002, 2004 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
+/* Copyright 1996-2001, 2002, 2004, 2005 by */
+/* David Turner, Robert Wilhelm, Werner Lemberg and Detlef Würkner. */
/* */
/* This file is part of the FreeType project, and may only be used, */
/* modified, and distributed under the terms of the FreeType project */
@@ -62,6 +41,30 @@ extern struct DOSIFace *IDOS;
/*************************************************************************/
+/*
+ * Based on the default ftdebug.c,
+ * replaced vprintf() with KVPrintF(),
+ * commented out exit(),
+ * replaced getenv() with GetVar().
+ */
+
+#include <exec/types.h>
+#include <utility/tagitem.h>
+#include <dos/exall.h>
+#include <dos/var.h>
+#define __NOLIBBASE__
+#define __NOLOBALIFACE__
+#define __USE_INLINE__
+#include <proto/dos.h>
+#include <clib/debug_protos.h>
+
+#ifndef __amigaos4__
+extern struct Library *DOSBase;
+#else
+extern struct DOSIFace *IDOS;
+#endif
+
+
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_INTERNAL_DEBUG_H
@@ -268,5 +271,9 @@ extern struct DOSIFace *IDOS;
#endif /* !FT_DEBUG_LEVEL_TRACE */
-
+/*
+Local Variables:
+coding: latin-1
+End:
+*/
/* END */