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