aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/nlmconv.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index a5edcbf..3363eb6 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -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.
diff --git a/binutils/nlmconv.c b/binutils/nlmconv.c
index 0d5966a..46b4397 100644
--- a/binutils/nlmconv.c
+++ b/binutils/nlmconv.c
@@ -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