# HG changeset patch # User Dave Love # Date 960215648 0 # Node ID e7dca295c54191cb48902118833ffd3b5a545e67 # Parent 3ff463c78c103c6cf310108e6e14692953c44be6 Protect against multiple inclusion. (timezone) [USG5_4]: Define as time_t. diff -r 3ff463c78c10 -r e7dca295c541 src/systime.h --- a/src/systime.h Mon Jun 05 14:30:01 2000 +0000 +++ b/src/systime.h Mon Jun 05 14:34:08 2000 +0000 @@ -18,6 +18,9 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef _SYSTIME_H +#define _SYSTIME_H + #ifdef TIME_WITH_SYS_TIME #include #include @@ -37,7 +40,7 @@ /* SVr4 doesn't actually declare this in its #include files. */ #ifdef USG5_4 -extern long timezone; +extern time_t timezone; #endif #ifdef VMS @@ -163,3 +166,4 @@ #define EMACS_TIME_LT(T1, T2) (EMACS_TIME_CMP (T1, T2) < 0) #define EMACS_TIME_LE(T1, T2) (EMACS_TIME_CMP (T1, T2) <= 0) +#endif /* _SYSTIME_H */