Provide a full prototype for the localtime() function in order to avoid a

compile time warning.
This commit is contained in:
Nick Clifton 2005-02-15 14:31:13 +00:00
parent bf143b25e9
commit b5e6aa6331
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-02-15 Nick Clifton <nickc@redhat.com>
* nlmconv.c: Provide a full prototype for the localtime() function
in order to avoid a compile time warning.
2005-02-11 H.J. Lu <hongjiu.lu@intel.com>
* readelf.c (group_count): Don't initialize it.

View File

@ -59,7 +59,7 @@
extern char *strerror (int);
#ifndef localtime
extern struct tm *localtime ();
extern struct tm *localtime (const time_t *);
#endif
#ifndef SEEK_SET