1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Proper way to do the previous mis-commit. Still not quite right, because

some header files (e.g., <err.h>) include <machine/something.h>, and this
will not pick up the right header files, so it may be removed eventually
anyway.  But some people who are not willing to build the right way
apparantly want this, so this is for them.
This commit is contained in:
Sean Eric Fagan 1998-01-09 00:39:10 +00:00
parent 41ccb63223
commit 19db2a3c0b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32355
5 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
PROG= truss
SRCS= main.c setup.c i386-fbsd.c i386-linux.c \
syscalls.c linux_syscalls.h syscalls.h ioctl.c
CFLAGS+= -I${.CURDIR} -I.
CFLAGS+= -I${.CURDIR} -I. -I${.CUDIR}/../../sys
CLEANFILES+=i386l-syscalls.master syscalls.master linux_syscalls.h \
syscalls.h ioctl.c

View File

@ -31,7 +31,7 @@
#ifndef lint
static const char rcsid[] =
"$Id$";
"$Id: i386-fbsd.c,v 1.3 1998/01/05 07:30:24 charnier Exp $";
#endif /* not lint */
/*
@ -51,8 +51,8 @@ static const char rcsid[] =
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/pioctl.h>
#include <machine/reg.h>
#include <machine/psl.h>
#include <i386/include/reg.h>
#include <i386/include/psl.h>
#include <sys/syscall.h>
#include "syscall.h"

View File

@ -31,7 +31,7 @@
#ifndef lint
static const char rcsid[] =
"$Id$";
"$Id: i386-linux.c,v 1.3 1998/01/05 07:30:25 charnier Exp $";
#endif /* not lint */
/*
@ -49,8 +49,8 @@ static const char rcsid[] =
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/pioctl.h>
#include <machine/reg.h>
#include <machine/psl.h>
#include <i386/include/reg.h>
#include <i386/include/psl.h>
#include "syscall.h"

View File

@ -31,7 +31,7 @@
#ifndef lint
static const char rcsid[] =
"$Id$";
"$Id: i386-fbsd.c,v 1.3 1998/01/05 07:30:24 charnier Exp $";
#endif /* not lint */
/*
@ -51,8 +51,8 @@ static const char rcsid[] =
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/pioctl.h>
#include <machine/reg.h>
#include <machine/psl.h>
#include <i386/include/reg.h>
#include <i386/include/psl.h>
#include <sys/syscall.h>
#include "syscall.h"

View File

@ -31,7 +31,7 @@
#ifndef lint
static const char rcsid[] =
"$Id$";
"$Id: i386-linux.c,v 1.3 1998/01/05 07:30:25 charnier Exp $";
#endif /* not lint */
/*
@ -49,8 +49,8 @@ static const char rcsid[] =
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/pioctl.h>
#include <machine/reg.h>
#include <machine/psl.h>
#include <i386/include/reg.h>
#include <i386/include/psl.h>
#include "syscall.h"