aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-03-11 07:17:15 +0000
committerJim Blandy1993-03-11 07:17:15 +0000
commit9e70858b73006fff0b7daa82184dcc89b896691a (patch)
tree2bded344c4b018122b72c41f453130d89c41b068 /src
parent985a35a39b2f99852e49bcb25d971f1a04d87670 (diff)
downloademacs-9e70858b73006fff0b7daa82184dcc89b896691a.tar.gz
emacs-9e70858b73006fff0b7daa82184dcc89b896691a.zip
* systime.h (timezone): Add an explicit declaration for this
variable under USG 5-4.
Diffstat (limited to 'src')
-rw-r--r--src/systime.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/systime.h b/src/systime.h
index fdbb70a78af..8b6718a8747 100644
--- a/src/systime.h
+++ b/src/systime.h
@@ -40,6 +40,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
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
45extern 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