1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-27 04:12:51 +00:00

Remove platform support for Apollo/Domain. (#30)

This commit is contained in:
Bruce Mitchener
2020-12-13 09:07:08 +07:00
committed by GitHub
parent 69e66470a0
commit 292809694e
15 changed files with 5 additions and 137 deletions

View File

@@ -134,12 +134,6 @@ static char *id = "$Id: dsk.c,v 1.4 2001/12/24 01:09:01 sybalsky Exp $ Copyright
#endif /* ULTRIX */
#ifdef APOLLO
#include <sys/statfs.h>
#define d_fileno d_ino
#define f_bavail f_bfree
#endif /* APOLLO */
#ifdef GCC386
#include "inlnPS2.h"
#endif /* GCC386 */
@@ -2450,9 +2444,6 @@ LispPTR COM_getfreeblock(register LispPTR *args)
#elif defined(ISC)
TIMEOUT(rval = statfs(dir, &sfsbuf, sizeof(struct statfs), 0));
if (rval != 0) {
#elif APOLLO
TIMEOUT(rval = statfs(dir, &sfsbuf, sizeof(struct statfs), 0));
if (rval != 0) {
#elif defined(LINUX)
TIMEOUT(rval = statfs(dir, &sfsbuf));
if (rval != 0) {