summaryrefslogtreecommitdiff
path: root/src/systime.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-03-11 07:17:15 +0000
committerJim Blandy <jimb@redhat.com>1993-03-11 07:17:15 +0000
commit9e70858b73006fff0b7daa82184dcc89b896691a (patch)
tree2bded344c4b018122b72c41f453130d89c41b068 /src/systime.h
parent985a35a39b2f99852e49bcb25d971f1a04d87670 (diff)
downloademacs-9e70858b73006fff0b7daa82184dcc89b896691a.tar.gz
* systime.h (timezone): Add an explicit declaration for this
variable under USG 5-4.
Diffstat (limited to 'src/systime.h')
-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. */
#include <time.h>
#endif
+/* SVr4 doesn't actually declare this in its #include files. */
+#ifdef USG5_4
+extern long timezone;
+#endif
+
/* EMACS_TIME is the type to use to represent temporal intervals -
struct timeval on some systems, int on others. It can be passed as