Don't define macro magic to redirect function calls if _ISOMAC is defined.
authorUlrich Drepper <drepper@redhat.com>
Mon, 5 Aug 2002 02:21:23 +0000 (02:21 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 5 Aug 2002 02:21:23 +0000 (02:21 +0000)
include/stdio.h

index e58c033..671f8ea 100644 (file)
@@ -71,7 +71,7 @@ extern int _sys_nerr_internal attribute_hidden;
 extern int __asprintf_internal (char **__restrict __ptr,
                                __const char *__restrict __fmt, ...)
      attribute_hidden __attribute__ ((__format__ (__printf__, 2, 3)));
-#  ifndef NOT_IN_libc
+#  if !defined NOT_IN_libc && !defined _ISOMAC
 #    define __asprintf(ptr, fmt, args...) \
   INTUSE(__asprintf) (ptr, fmt, ##args)