diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-01-26 23:31:37 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-01-26 23:31:37 +0000 |
commit | 965a54a4eecc6cf5c53718f07290171f744c4d6c (patch) | |
tree | d1c7796f9828bc76b907afe6727ed0eb1d94ed4c /libio | |
parent | 7071ad79db0886c0f17946feea71439400c706a9 (diff) | |
download | glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.gz |
Remove __STDC__ conditionals from non-installed headers.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/libioP.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libio/libioP.h b/libio/libioP.h index 9bbdd28f61..305a6e3fff 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -927,11 +927,7 @@ VTABLE_LABEL(builtinbuf_vtable, builtinbuf, 10) # endif #endif /* !defined(builtinbuf_vtable) && defined(__cplusplus) */ -#if defined(__STDC__) || defined(__cplusplus) -# define _IO_va_start(args, last) va_start(args, last) -#else -# define _IO_va_start(args, last) va_start(args) -#endif +#define _IO_va_start(args, last) va_start(args, last) extern struct _IO_fake_stdiobuf _IO_stdin_buf, _IO_stdout_buf, _IO_stderr_buf; |