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

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