diff liboctave/lo-cutils.c @ 3706:6581e686f83f

[project @ 2000-07-25 05:30:02 by jwe]
author jwe
date Tue, 25 Jul 2000 05:30:02 +0000
parents 0a93682f89c8
children 58140935c812
line wrap: on
line diff
--- a/liboctave/lo-cutils.c	Sat Jul 22 01:57:28 2000 +0000
+++ b/liboctave/lo-cutils.c	Tue Jul 25 05:30:02 2000 +0000
@@ -25,6 +25,7 @@
 #endif
 
 #include <stdlib.h>
+#include <time.h>
 
 void
 octave_qsort (void *base, size_t n, size_t size,
@@ -33,6 +34,14 @@
   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);
+}
+
 /*
 ;;; Local Variables: ***
 ;;; mode: C++ ***