aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-26 22:15:23 +0000
committerRichard M. Stallman1994-05-26 22:15:23 +0000
commitc810639a783c483f6fce23d78f53bff4a162c7a3 (patch)
treed82f6bf5cc2d9c521da921aacc959f66f80b807f /src
parentdbbcac56124849f326378a30ee68c9d9e0f2d33b (diff)
downloademacs-c810639a783c483f6fce23d78f53bff4a162c7a3.tar.gz
emacs-c810639a783c483f6fce23d78f53bff4a162c7a3.zip
Make previous change limited to HPUX.
Diffstat (limited to 'src')
-rw-r--r--src/systime.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/systime.h b/src/systime.h
index 98609728baa..78fd84b074e 100644
--- a/src/systime.h
+++ b/src/systime.h
@@ -47,12 +47,13 @@ extern long timezone;
47 47
48/* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h 48/* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h
49 disagree about the name of the guard symbol. */ 49 disagree about the name of the guard symbol. */
50#ifdef HPUX
50#ifdef _STRUCT_TIMEVAL 51#ifdef _STRUCT_TIMEVAL
51#ifndef __TIMEVAL__ 52#ifndef __TIMEVAL__
52#define __TIMEVAL__ 53#define __TIMEVAL__
53#endif 54#endif
54#endif 55#endif
55 56#endif
56 57
57/* EMACS_TIME is the type to use to represent temporal intervals - 58/* EMACS_TIME is the type to use to represent temporal intervals -
58 struct timeval on some systems, int on others. It can be passed as 59 struct timeval on some systems, int on others. It can be passed as