diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-19 08:35:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-19 08:35:44 +0000 |
commit | ae177b9c8a14da52538db5749eee90f08f5aedea (patch) | |
tree | 278306b73aa66ae1bae408b7e8aafcaffaf76c59 /misc/sys/cdefs.h | |
parent | b526f8ac5fa5e04ffe3aee151d777ad4c0747ece (diff) | |
download | glibc-ae177b9c8a14da52538db5749eee90f08f5aedea.tar.gz glibc-ae177b9c8a14da52538db5749eee90f08f5aedea.tar.xz glibc-ae177b9c8a14da52538db5749eee90f08f5aedea.zip |
Update.
* locale/langinfo.h: Always define CODESET. (CODESET): Define also as macro.
Diffstat (limited to 'misc/sys/cdefs.h')
-rw-r--r-- | misc/sys/cdefs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index 7db057560d..0a5f65e312 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -138,15 +138,15 @@ # define __attribute__(xyz) /* Ignore */ +#endif + /* At some point during the gcc 2.96 development the `malloc' attribute for functions was introduced. We don't want to use it unconditionally (although this would be possible) since it generates warnings. */ -# if __GNUC_PREREQ (2,96) -# define __attribute_malloc__ __attribute__ ((__malloc__)) -# else -# define __attribute_malloc__ /* Ignore */ -# endif - +#if __GNUC_PREREQ (2,96) +# define __attribute_malloc__ __attribute__ ((__malloc__)) +#else +# define __attribute_malloc__ /* Ignore */ #endif /* It is possible to compile containing GCC extensions even if GCC is |