diff options
author | peter <peter@FreeBSD.org> | 2003-04-30 18:17:07 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-04-30 18:17:07 +0000 |
commit | 08afc1caa9705c6e393ba3311e54c909feb1cf2d (patch) | |
tree | d0a5e40d054291532d04041498d05290676e7939 /lib | |
parent | 415054f8cbd4c9a67ca976b2678847b2baa8bd8d (diff) | |
download | FreeBSD-src-08afc1caa9705c6e393ba3311e54c909feb1cf2d.zip FreeBSD-src-08afc1caa9705c6e393ba3311e54c909feb1cf2d.tar.gz |
Delete i386_* syscall wrappers and manpages. Rename Ovfork.S to vfork.S.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/amd64/sys/Makefile.inc | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/lib/libc/amd64/sys/Makefile.inc b/lib/libc/amd64/sys/Makefile.inc index d928ea9..adfa8485 100644 --- a/lib/libc/amd64/sys/Makefile.inc +++ b/lib/libc/amd64/sys/Makefile.inc @@ -1,11 +1,8 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp # $FreeBSD$ -SRCS+= i386_clr_watch.c i386_get_ioperm.c i386_get_ldt.c i386_set_ioperm.c \ - i386_set_ldt.c i386_set_watch.c i386_vm86.c - -MDASM= Ovfork.S brk.S cerror.S exect.S pipe.S ptrace.S reboot.S sbrk.S \ - setlogin.S sigreturn.S syscall.S +MDASM= vfork.S brk.S cerror.S exect.S pipe.S ptrace.S reboot.S sbrk.S \ + setlogin.S sigreturn.S # Don't generate default code for these syscalls: NOASM= break.o exit.o ftruncate.o getdomainname.o getlogin.o \ @@ -13,10 +10,3 @@ NOASM= break.o exit.o ftruncate.o getdomainname.o getlogin.o \ pwrite.o setdomainname.o sstk.o truncate.o uname.o vfork.o yield.o PSEUDO= _getlogin.o _exit.o - -MAN+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2 -MAN+= i386_set_watch.3 - -MLINKS+=i386_get_ioperm.2 i386_set_ioperm.2 -MLINKS+=i386_get_ldt.2 i386_set_ldt.2 -MLINKS+=i386_set_watch.3 i386_clr_watch.3 |