1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 15:57:13 +00:00

We only build as ANSI C, so we don't check for __STDC__. (#37)

This commit is contained in:
Bruce Mitchener 2020-12-14 01:24:04 +07:00 committed by GitHub
parent 33a42736d4
commit 46e9882f30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View File

@ -103,11 +103,7 @@ extern DspInterface currentdsp;
#define LISP_UNIX_TIME_DIFF 29969152
#define LISP_ALTO_TIME_MASK 0x80000000
#ifdef __STDC__
#define UNIX_ALTO_TIME_DIFF 2177452800U
#else
#define UNIX_ALTO_TIME_DIFF 2177452800
#endif /* __STDC__ */
/* Interlisp time is signed; MIN.FIXP = "01-JAN-01 00:00:00 GMT"
* Interlisp 0 is at "19-Jan-69 12:14:08 PST"

View File

@ -13,6 +13,7 @@ static char *id = "$Id: xrdopt.c,v 1.6 2001/12/26 22:17:07 sybalsky Exp $ Copyri
#include "version.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/file.h>
#include <sys/time.h>
@ -28,10 +29,6 @@ static char *id = "$Id: xrdopt.c,v 1.6 2001/12/26 22:17:07 sybalsky Exp $ Copyri
#include <X11/Xutil.h>
#include <X11/Xresource.h>
#ifdef __STDC__
#include <stdlib.h>
#endif /* __STDC__ */
#include "xdefs.h"
#include "dbprint.h"