2002-02-10 Daniel Jacobowitz <drow@mvista.com>

* coffdump.c: Include "getopt.h" after "bucomm.h"
	so that macros are defined correctly.
	* nlmconv.c: Add PARAMS ((const time_t *)) to localtime
	prototype.  Prototype main.
	* nlmheader.y: Add PARAMS ((int)) to strerror prototype.
This commit is contained in:
Daniel Jacobowitz 2002-02-10 18:47:48 +00:00
parent 004af6c7ff
commit 408f8db182
4 changed files with 13 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2002-02-10 Daniel Jacobowitz <drow@mvista.com>
* coffdump.c: Include "getopt.h" after "bucomm.h"
so that macros are defined correctly.
* nlmconv.c: Add PARAMS ((const time_t *)) to localtime
prototype. Prototype main.
* nlmheader.y: Add PARAMS ((int)) to strerror prototype.
2002-02-06 Alexandre Oliva <aoliva@redhat.com> 2002-02-06 Alexandre Oliva <aoliva@redhat.com>
* MAINTAINERS: Added self as SH co-maintainer. * MAINTAINERS: Added self as SH co-maintainer.

View file

@ -24,11 +24,11 @@
it out so we can test the grokker. */ it out so we can test the grokker. */
#include <bfd.h> #include <bfd.h>
#include <getopt.h>
#include <libiberty.h> #include <libiberty.h>
#include "coffgrok.h" #include "coffgrok.h"
#include "bucomm.h" #include "bucomm.h"
#include "getopt.h"
static int atnl; static int atnl;

View file

@ -59,7 +59,7 @@
extern char *strerror PARAMS ((int)); extern char *strerror PARAMS ((int));
#ifndef localtime #ifndef localtime
extern struct tm *localtime (); extern struct tm *localtime PARAMS ((const time_t *));
#endif #endif
#ifndef SEEK_SET #ifndef SEEK_SET
@ -122,6 +122,8 @@ static struct option long_options[] =
/* Local routines. */ /* Local routines. */
int main PARAMS ((int, char **));
static void show_usage PARAMS ((FILE *, int)); static void show_usage PARAMS ((FILE *, int));
static const char *select_output_format PARAMS ((enum bfd_architecture, static const char *select_output_format PARAMS ((enum bfd_architecture,
unsigned long, boolean)); unsigned long, boolean));

View file

@ -494,7 +494,7 @@ string_list:
/* If strerror is just a macro, we want to use the one from libiberty /* If strerror is just a macro, we want to use the one from libiberty
since it will handle undefined values. */ since it will handle undefined values. */
#undef strerror #undef strerror
extern char *strerror (); extern char *strerror PARAMS ((int));
/* The lexer is simple, too simple for flex. Keywords are only /* The lexer is simple, too simple for flex. Keywords are only
recognized at the start of lines. Everything else must be an recognized at the start of lines. Everything else must be an