BSD 4_3 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Tue, 18 Jun 1985 15:16:37 +0000 (07:16 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Tue, 18 Jun 1985 15:16:37 +0000 (07:16 -0800)
Work on file usr/include/time.h

Synthesized-from: CSRG/cd1/4.3

usr/include/time.h [new file with mode: 0644]

diff --git a/usr/include/time.h b/usr/include/time.h
new file mode 100644 (file)
index 0000000..8eb62c0
--- /dev/null
@@ -0,0 +1,19 @@
+/*     time.h  1.1     85/03/13        */
+
+/*
+ * Structure returned by gmtime and localtime calls (see ctime(3)).
+ */
+struct tm {
+       int     tm_sec;
+       int     tm_min;
+       int     tm_hour;
+       int     tm_mday;
+       int     tm_mon;
+       int     tm_year;
+       int     tm_wday;
+       int     tm_yday;
+       int     tm_isdst;
+};
+
+extern struct tm *gmtime(), *localtime();
+extern char *asctime(), *ctime();