changeset 3470:b3a16793a390

[project @ 2000-01-22 23:04:00 by jwe]
author jwe
date Sat, 22 Jan 2000 23:04:00 +0000
parents fe0c38ca9d82
children a0aef47b4b4d
files liboctave/ChangeLog liboctave/strptime.c
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Fri Jan 21 23:01:26 2000 +0000
+++ b/liboctave/ChangeLog	Sat Jan 22 23:04:00 2000 +0000
@@ -1,4 +1,8 @@
-2000-01-21  John W. Eaton  <jwe@bevo.che.wisc.edu>
+2000-01-22  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* strptime.c: Only include langinfo.h if _LIBC is defined.
+
+2000-01-21  A. Scottedward Hodel <a.s.hodel@eng.auburn.edu>
 
 	* CMatrix.cc (ComplexMatrix::expm): Apply permutation and scaling
 	operations directly in step 2 and reverse step 2.
--- a/liboctave/strptime.c	Fri Jan 21 23:01:26 2000 +0000
+++ b/liboctave/strptime.c	Sat Jan 22 23:04:00 2000 +0000
@@ -28,7 +28,9 @@
 #endif
 
 #include <ctype.h>
-#include <langinfo.h>
+#ifdef _LIBC
+#  include <langinfo.h>
+#endif
 #include <limits.h>
 #include <string.h>
 #include <time.h>