summaryrefslogtreecommitdiff
path: root/include/stdio.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-08-05 02:21:23 +0000
committerUlrich Drepper <drepper@redhat.com>2002-08-05 02:21:23 +0000
commit25e08dc663fbf9f8449b56ffac8bf4d6e9a159b9 (patch)
tree641faf00729b3c3c359cbf93efab97f70daa1cf6 /include/stdio.h
parent382b94a58ad2afc85ccf1d24a529963671b9f2a8 (diff)
Don't define macro magic to redirect function calls if _ISOMAC is defined.
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h
index e58c033709..671f8eaf4f 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -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)