diff options
author | Jim Blandy <jimb@redhat.com> | 1993-03-11 07:17:15 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-03-11 07:17:15 +0000 |
commit | 9e70858b73006fff0b7daa82184dcc89b896691a (patch) | |
tree | 2bded344c4b018122b72c41f453130d89c41b068 /src/systime.h | |
parent | 985a35a39b2f99852e49bcb25d971f1a04d87670 (diff) | |
download | emacs-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.h | 5 |
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 |