1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-28 20:41:30 +00:00

Begin to clean up includes and ifdefs in includes. (#41)

This commit is contained in:
Bruce Mitchener
2020-12-15 00:26:06 +07:00
committed by GitHub
parent 2dba7492af
commit a68cce2203
18 changed files with 152 additions and 321 deletions

View File

@@ -19,19 +19,16 @@ static char *id = "$Id: uutils.c,v 1.3 1999/05/31 23:35:47 sybalsky Exp $ Copyri
/* */
/************************************************************************/
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#ifndef DOS
#include <pwd.h>
#endif
#include <signal.h>
#ifdef DOS
#include <time.h>
#else
#include <sys/time.h>
#endif
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "lispemul.h"
#include "adr68k.h"
#include "lsptypes.h"