Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
482fa053
Commit
482fa053
authored
Jun 05, 2000
by
Dave Love
Browse files
Protect against multiple inclusion.
(timezone) [USG5_4]: Define as time_t.
parent
edc8940c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/systime.h
src/systime.h
+5
-1
No files found.
src/systime.h
View file @
482fa053
...
...
@@ -18,6 +18,9 @@ along with GNU Emacs; see the file COPYING. If not, write to
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 <sys/time.h>
#include <time.h>
...
...
@@ -37,7 +40,7 @@ extern char *tzname[]; /* RS6000 and others want it this way. */
/* 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 @@ extern int set_file_times ();
#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 */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment