comparison src/systime.h @ 2123:41ea195f5ccb

* systime.h (timezone): Add an explicit declaration for this variable under USG 5-4.
author Jim Blandy <jimb@redhat.com>
date Thu, 11 Mar 1993 07:17:15 +0000
parents 699033d79ee6
children 87934d212841
comparison
equal deleted inserted replaced
2122:f3c105f296b2 2123:41ea195f5ccb
38 /* AIX needs both <sys/time.h> and <time.h>. */ 38 /* AIX needs both <sys/time.h> and <time.h>. */
39 #ifdef _AIX 39 #ifdef _AIX
40 #include <time.h> 40 #include <time.h>
41 #endif 41 #endif
42 42
43 /* SVr4 doesn't actually declare this in its #include files. */
44 #ifdef USG5_4
45 extern long timezone;
46 #endif
47
43 48
44 /* EMACS_TIME is the type to use to represent temporal intervals - 49 /* EMACS_TIME is the type to use to represent temporal intervals -
45 struct timeval on some systems, int on others. It can be passed as 50 struct timeval on some systems, int on others. It can be passed as
46 the timeout argument to the select () system call. 51 the timeout argument to the select () system call.
47 52