1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-26 04:17:27 +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

@@ -12,24 +12,13 @@ static char *id = "$Id: ldsout.c,v 1.4 2001/12/26 22:17:02 sybalsky Exp $ Copyri
#include "version.h"
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#ifndef DOS
#include <sys/file.h>
#endif /* DOS */
#include <sys/stat.h>
#include <errno.h>
#if defined(SYSVONLY) || defined(OS5)
#include <sys/fcntl.h>
#endif /* SYSVONLY || OS5 */
#ifdef DOS
#include <fcntl.h>
#endif /* DOS */
#include <unistd.h>
#include "adr68k.h"
#include "lispemul.h"