diff options
author | Jim Blandy <jimb@redhat.com> | 1993-03-14 22:49:14 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-03-14 22:49:14 +0000 |
commit | 229f0363913547c7144471421ec681ccc6532d92 (patch) | |
tree | 0a307937ff87e97c1e0143da9849da13a7b34615 /src/vmstime.h | |
parent | 7f05aa0f80f0ea84da0617eddbc928b442c3f105 (diff) | |
download | emacs-229f0363913547c7144471421ec681ccc6532d92.tar.gz |
Initial revision
Diffstat (limited to 'src/vmstime.h')
-rw-r--r-- | src/vmstime.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/vmstime.h b/src/vmstime.h new file mode 100644 index 00000000000..70d23e9d2fe --- /dev/null +++ b/src/vmstime.h @@ -0,0 +1,15 @@ +#ifndef vmstime_h +#define vmstime_h + +#include <time.h> +#include <libdtdef.h> + +extern long timezone; +extern int daylight; +extern char *tzname[2]; + +void sys_tzset(); +struct tm *sys_localtime(time_t *clock); +struct tm *sys_gmtime(time_t *clock); + +#endif /* vmstime_h */ |