aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-29 21:10:41 +0000
committerRichard M. Stallman1993-05-29 21:10:41 +0000
commite11d186d507f23cac20254ccc6014ef581af9990 (patch)
tree1c027c0f6626ce87e098246e528d78ecf75e32e6 /src
parent85e28fa2a720ffbe599a03e156b03aa8245fd445 (diff)
downloademacs-e11d186d507f23cac20254ccc6014ef581af9990.tar.gz
emacs-e11d186d507f23cac20254ccc6014ef581af9990.zip
[HPUX]: Include time.h and define __TIMEVAL__.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 0c72456b141..d7594a051e0 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -34,6 +34,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
34#include "blockinput.h" 34#include "blockinput.h"
35#include "window.h" 35#include "window.h"
36 36
37/* Compensate for bug in Xos.h on hpux. */
38#if HPUX
39#include <time.h>
40#define __TIMEVAL__
41#endif
42
37/* Display Context for the icons */ 43/* Display Context for the icons */
38#include <X11/Intrinsic.h> 44#include <X11/Intrinsic.h>
39#include <X11/StringDefs.h> 45#include <X11/StringDefs.h>