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
commit0a86053161f13d20d6018a49f4dcab80fad41023 (patch)
treef5c19f29841e26e31026544698d9dd5bc6e94e8a /src/systime.h
parent5574059527e3949952eb37a97981729ed9d7570d (diff)
downloademacs-0a86053161f13d20d6018a49f4dcab80fad41023.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