diff options
author | bde <bde@FreeBSD.org> | 1999-04-05 07:38:07 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-04-05 07:38:07 +0000 |
commit | 728fc3d6768d66589aba996ffcd005cb76394086 (patch) | |
tree | 544d822eb5abadde2b7c7674a4539eae440dab3c /lib/libc | |
parent | 3fdb487782fc3420588315e9f5666810e816886a (diff) | |
download | FreeBSD-src-728fc3d6768d66589aba996ffcd005cb76394086.zip FreeBSD-src-728fc3d6768d66589aba996ffcd005cb76394086.tar.gz |
Fixed disordering in previous 2 commits. Fixed an English error.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/Makefile.inc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index e3ed6d1..6fdd867 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,5 +1,5 @@ # @(#)Makefile.inc 8.3 (Berkeley) 10/24/94 -# $Id: Makefile.inc,v 1.58 1999/04/04 12:29:31 dfr Exp $ +# $Id: Makefile.inc,v 1.59 1999/04/04 21:46:24 dt Exp $ # sys sources .PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/sys ${.CURDIR}/../libc/sys @@ -16,9 +16,9 @@ .include "${.CURDIR}/../libc/${MACHINE_ARCH}/sys/Makefile.inc" # Sources common to both syscall interfaces: -SRCS+= ftruncate.c lseek.c mmap.c truncate.c pread.c pwrite.c +SRCS+= ftruncate.c lseek.c mmap.c pread.c pwrite.c truncate.c -# Build __error() into libc, but not libc_r which has it's own: +# Build __error() into libc, but not libc_r which has its own: .if ${LIB} == "c" SRCS+= __error.c .endif @@ -82,7 +82,9 @@ MAN2+= _exit.2 accept.2 access.2 acct.2 adjtime.2 aio_read.2 \ getpeername.2 getpgrp.2 getpid.2 getpriority.2 getrlimit.2 \ getrusage.2 getsid.2 getsockname.2 \ getsockopt.2 gettimeofday.2 getuid.2 \ - intro.2 ioctl.2 issetugid.2 kill.2 ktrace.2 link.2 listen.2 lseek.2 \ + intro.2 ioctl.2 issetugid.2 kill.2 \ + kldfind.2 kldfirstmod.2 kldload.2 kldnext.2 kldstat.2 kldunload.2 \ + ktrace.2 link.2 listen.2 lseek.2 \ madvise.2 mincore.2 minherit.2 mkdir.2 mkfifo.2 mknod.2 mlock.2 mmap.2 \ mount.2 mprotect.2 msync.2 munmap.2 nanosleep.2 \ nfssvc.2 open.2 pathconf.2 pipe.2 poll.2 profil.2 ptrace.2 quotactl.2 \ @@ -99,7 +101,6 @@ MAN2+= _exit.2 accept.2 access.2 acct.2 adjtime.2 aio_read.2 \ MAN2+= sched_get_priority_max.2 sched_setparam.2 \ sched_setscheduler.2 sched_yield.2 .endif -MAN2+= kldfind.2 kldfirstmod.2 kldload.2 kldnext.2 kldstat.2 kldunload.2 MLINKS+=brk.2 sbrk.2 MLINKS+=dup.2 dup2.2 |