aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-09 04:26:46 +0000
committerRichard M. Stallman1993-05-09 04:26:46 +0000
commit1a6847b5bc3e72997b47d0be0187a1585ad495f9 (patch)
treecf0d67dd68e0466a070a3748d42348d016865dea /src
parent2d4130047f292d8b2a2d07ec58ba3bc4c52c4ffb (diff)
downloademacs-1a6847b5bc3e72997b47d0be0187a1585ad495f9.tar.gz
emacs-1a6847b5bc3e72997b47d0be0187a1585ad495f9.zip
[SCO]: Include time.h.
Diffstat (limited to 'src')
-rw-r--r--src/systime.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systime.h b/src/systime.h
index 094aee2a249..165a9f43ed3 100644
--- a/src/systime.h
+++ b/src/systime.h
@@ -35,8 +35,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
35 35
36#endif 36#endif
37 37
38/* AIX needs both <sys/time.h> and <time.h>. */ 38/* AIX and SCO 3.2v4 need both <sys/time.h> and <time.h>. */
39#ifdef _AIX 39#if defined (_AIX) || defined (SCO)
40#include <time.h> 40#include <time.h>
41#endif 41#endif
42 42