* time_r.c (copy_string_result): Remove, as it is no longer used.
authorEric Blake <ebb9@byu.net>
Sat, 25 Mar 2006 04:36:14 +0000 (04:36 +0000)
committerEric Blake <ebb9@byu.net>
Sat, 25 Mar 2006 04:36:14 +0000 (04:36 +0000)
lib/ChangeLog
lib/time_r.c

index ca866ca..64c263a 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-24  Eric Blake  <ebb9@byu.net>
+
+       * time_r.c (copy_string_result): Remove, as it is no longer used.
+
 2006-03-24  Simon Josefsson  <jas@extundo.com>
 
        * base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
index af845b4..4120063 100644 (file)
 
 #include <string.h>
 
-static char *
-copy_string_result (char *dest, char const *src)
-{
-  if (! src)
-    return 0;
-  return strcpy (dest, src);
-}
-
 static struct tm *
 copy_tm_result (struct tm *dest, struct tm const *src)
 {