solved some problems with include files
authorceriel <none@none>
Tue, 24 Feb 1987 10:54:20 +0000 (10:54 +0000)
committerceriel <none@none>
Tue, 24 Feb 1987 10:54:20 +0000 (10:54 +0000)
lang/cem/libcc/gen/tzset.c

index d379627..04a85f8 100644 (file)
@@ -1,9 +1,20 @@
 #ifdef BSD4_2
-#include <sys/time.h>
+struct timeval {
+       long tv_sec, tv_usec;
+};
+struct timezone {
+       int tz_minuteswest, tz_dsttime;
+};
 #else
 #ifndef USG
 #include <sys/types.h>
-#include <sys/timeb.h>
+struct timeb
+{
+       time_t  time;
+       ushort  millitm;
+       short   timezone;
+       short   dstflag;
+};
 #endif
 #endif