Disable __unused

It conflicts with a struct member in a Linux header.
This commit is contained in:
Guillem Jover 2006-02-15 20:41:06 +00:00
parent 67e48af044
commit 1e8b819b45
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-02-15 Guillem Jover <guillem@debian.org>
* include/bsd/cdefs.h: Disable __unused, it conflicts with a struct
member in a Linux header.
2006-02-14 Guillem Jover <guillem@debian.org>
* include/bsd/stdlib.h: Remove <sys/types.h> and <stdio.h>.

View File

@ -11,6 +11,9 @@
# define __dead2
#endif
/* Linux headers define a struct with a member names __unused.
* Disable for now. */
#if 0
#ifndef __unused
# ifdef __GNUC__
# define __unused __attribute__((unused))
@ -18,6 +21,7 @@
# define __unused
# endif
#endif
#endif
#ifndef __printflike
# ifdef __GNUC__