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

uutils: Clean up string.h inclusion. (#31)

This is similar to the change in #27. We can just include <string.h>
rather than doing performative dances and complicating everything.
This commit is contained in:
Bruce Mitchener
2020-12-13 09:12:06 +07:00
committed by GitHub
parent d91bdc0994
commit 348a3a2b30

View File

@@ -28,18 +28,9 @@ static char *id = "$Id: uutils.c,v 1.3 1999/05/31 23:35:47 sybalsky Exp $ Copyri
#else
#include <sys/time.h>
#endif
#ifndef SYSVONLY
#if defined(DOS)
#include <string.h>
#else
#include <strings.h>
#endif /* DOS */
#endif /* SYSVONLY */
#if defined(MACOSX) || defined(FREEBSD) /* we compile these with SYSVONLY but... */
#include <string.h>
#endif
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "lispemul.h"
#include "adr68k.h"