diff options
author | Roland McGrath <roland@gnu.org> | 1996-01-22 10:00:24 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-01-22 10:00:24 +0000 |
commit | f2f7f9e665975125ef253d7a621bcc3e4f68904d (patch) | |
tree | a102a42c30602248d14c0577a5e7bbea99bb6be2 /misc/error.c | |
parent | bbed653cda6007426e8291a5d32963552cc4f417 (diff) | |
download | glibc-f2f7f9e665975125ef253d7a621bcc3e4f68904d.tar glibc-f2f7f9e665975125ef253d7a621bcc3e4f68904d.tar.gz glibc-f2f7f9e665975125ef253d7a621bcc3e4f68904d.tar.bz2 glibc-f2f7f9e665975125ef253d7a621bcc3e4f68904d.zip |
* misc/Makefile (headers): Rename queue.h to sys/queue.h.cvs/libc-960122
* misc/queue.h: Moved to misc/sys/queue.h.
Diffstat (limited to 'misc/error.c')
-rw-r--r-- | misc/error.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/misc/error.c b/misc/error.c index cdba470656..c48c0f3c46 100644 --- a/misc/error.c +++ b/misc/error.c @@ -50,7 +50,11 @@ void exit (); /* If NULL, error will flush stdout, then print on stderr the program name, a colon and a space. Otherwise, error will call this function without parameters instead. */ -void (*error_print_progname) (); +void (*error_print_progname) ( +#if __STDC__ + void +#endif + ); /* This variable is incremented each time `error' is called. */ unsigned int error_message_count; |