diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-05 02:21:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-05 02:21:23 +0000 |
commit | 25e08dc663fbf9f8449b56ffac8bf4d6e9a159b9 (patch) | |
tree | 641faf00729b3c3c359cbf93efab97f70daa1cf6 | |
parent | 382b94a58ad2afc85ccf1d24a529963671b9f2a8 (diff) | |
download | glibc-25e08dc663fbf9f8449b56ffac8bf4d6e9a159b9.zip glibc-25e08dc663fbf9f8449b56ffac8bf4d6e9a159b9.tar.gz glibc-25e08dc663fbf9f8449b56ffac8bf4d6e9a159b9.tar.bz2 |
Don't define macro magic to redirect function calls if _ISOMAC is defined.
-rw-r--r-- | include/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h index e58c033..671f8ea 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) |