diff liboctave/lo-cutils.c @ 3786:9bb6e4197fc5

[project @ 2001-02-07 18:14:43 by jwe]
author jwe
date Wed, 07 Feb 2001 18:14:43 +0000
parents 58140935c812
children 63c75bc3db82
line wrap: on
line diff
--- a/liboctave/lo-cutils.c
+++ b/liboctave/lo-cutils.c
@@ -34,12 +34,10 @@
   qsort (base, n, size, cmp);
 }
 
-extern char *strptime ();
-
 char *
 oct_strptime (const char *buf, const char *format, struct tm *tm)
 {
-  return strptime (buf, format, tm);
+  return (char *) strptime (buf, format, tm);
 }