Deleted Added
full compact
1# @(#)Makefile.inc 8.3 (Berkeley) 10/24/94
2# $FreeBSD: stable/10/lib/libc/sys/Makefile.inc 281454 2015-04-12 06:52:43Z kib $
2# $FreeBSD: stable/10/lib/libc/sys/Makefile.inc 281981 2015-04-25 08:14:08Z kib $
3
4# sys sources
5.PATH: ${.CURDIR}/${LIBC_ARCH}/sys ${.CURDIR}/sys
6
7# Include the generated makefile containing the *complete* list
8# of syscall names in MIASM.
9.include "${.CURDIR}/../../sys/sys/syscall.mk"
10

--- 37 unchanged lines hidden (view full) ---

48 fsync \
49 fork \
50 kevent \
51 msync \
52 nanosleep \
53 open \
54 openat \
55 poll \
56 ppoll \
57 pselect \
58 read \
59 readv \
60 recvfrom \
61 recvmsg \
62 select \
63 sendmsg \
64 sendto \
65 setcontext \
66 sigprocmask \
67 sigsuspend \
68 sigtimedwait \
69 sigwait \
70 sigwaitinfo \
71 swapcontext \
72 wait4 \
73 wait6 \
74 write \
75 writev
76
77.if ${MACHINE_CPUARCH} == "sparc64"
78SRCS+= sigaction.c
79NOASM+= sigaction.o
80.else
81INTERPOSED+= sigaction

--- 383 unchanged lines hidden ---