From f84022e1807ffa332f6fad4e716465ade9736ab0 Mon Sep 17 00:00:00 2001 From: mccallum Date: Thu, 31 Oct 1996 21:24:43 +0000 Subject: [PATCH] (HAVE_REGISTER_PRINTF_FUNCTION): Move definition below #include's. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1923 72102866-910b-0410-8b05-ffd578937521 --- Source/NSString.m | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/NSString.m b/Source/NSString.m index a39af085d..62bbead52 100644 --- a/Source/NSString.m +++ b/Source/NSString.m @@ -33,14 +33,6 @@ */ -/* xxx Temporarily set HAVE_REGISTER_PRINTF_FUNCTION function to 0 - because I can't seem to figure out which versions of libc pass a - `va_list' to the output handler, and which pass a `void**' to the - output handler. Once I figure this out, these lines should be - removed. */ -#undef HAVE_REGISTER_PRINTF_FUNCTION -#define HAVE_REGISTER_PRINTF_FUNCTION 0 - #include #include #include @@ -61,6 +53,14 @@ #include #include +/* xxx Temporarily set HAVE_REGISTER_PRINTF_FUNCTION function to 0 + because I can't seem to figure out which versions of libc pass a + `va_list' to the output handler, and which pass a `void**' to the + output handler. Once I figure this out, these lines should be + removed. */ +#undef HAVE_REGISTER_PRINTF_FUNCTION +#define HAVE_REGISTER_PRINTF_FUNCTION 0 + @implementation NSString