Remove yet another superfluous file.

This commit is contained in:
James Raynard 1997-10-26 12:53:16 +00:00
parent 93a590c71d
commit be4ad1aa3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=30736
3 changed files with 3 additions and 61 deletions

View File

@ -40,6 +40,7 @@ doc/setter.outline
doc/texinfo.tex
install-sh
missing/
missing.c
mkinstalldirs
pc/
protos.h

View File

@ -1,59 +0,0 @@
/*
* Do all necessary includes here, so that we don't have to worry about
* overlapping includes in the files in missing.d.
*/
#include "awk.h"
#ifdef atarist
/*
* this will work with gcc compiler - for other compilers you may
* have to replace path separators in this file into backslashes
*/
#include "atari/stack.c"
#include "atari/tmpnam.c"
#endif /* atarist */
#ifndef HAVE_SYSTEM
#ifdef atarist
#include "atari/system.c"
#else
#include "missing/system.c"
#endif
#endif /* HAVE_SYSTEM */
#ifndef HAVE_MEMCMP
#include "missing/memcmp.c"
#endif /* HAVE_MEMCMP */
#ifndef HAVE_MEMCPY
#include "missing/memcpy.c"
#endif /* HAVE_MEMCPY */
#ifndef HAVE_MEMSET
#include "missing/memset.c"
#endif /* HAVE_MEMSET */
#ifndef HAVE_STRNCASECMP
#include "missing/strncasecmp.c"
#endif /* HAVE_STRCASE */
#ifndef HAVE_STRERROR
#include "missing/strerror.c"
#endif /* HAVE_STRERROR */
#ifndef HAVE_STRFTIME
#include "missing/strftime.c"
#endif /* HAVE_STRFTIME */
#ifndef HAVE_STRCHR
#include "missing/strchr.c"
#endif /* HAVE_STRCHR */
#ifndef HAVE_STRTOD
#include "missing/strtod.c"
#endif /* HAVE_STRTOD */
#ifndef HAVE_TZSET
#include "missing/tzset.c"
#endif /* HAVE_TZSET */

View File

@ -1,6 +1,6 @@
# Makefile copyright James Raynard (jraynard@freebsd.org) 1997
#
# $Id: Makefile,v 1.8 1997/10/15 14:01:31 ache Exp $
# $Id: Makefile,v 1.9 1997/10/26 12:20:45 ache Exp $
.include "${.CURDIR}/../Makefile.inc"
@ -8,7 +8,7 @@
PROG= awk
SRCS= array.c awktab.c builtin.c eval.c field.c gawkmisc.c io.c main.c \
missing.c msg.c node.c re.c version.c dfa.c getopt.c getopt1.c
msg.c node.c re.c version.c dfa.c getopt.c getopt1.c
MAN1= doc/awk.1
YACC = bison -y