Deleted Added
sdiff udiff text old ( 281454 ) new ( 281981 )
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 $
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 pselect \
57 read \
58 readv \
59 recvfrom \
60 recvmsg \
61 select \
62 sendmsg \
63 sendto \
64 setcontext \
65 sigprocmask \
66 sigsuspend \
67 sigtimedwait \
68 sigwait \
69 sigwaitinfo \
70 swapcontext \
71 wait4 \
72 write \
73 writev
74
75.if ${MACHINE_CPUARCH} == "sparc64"
76SRCS+= sigaction.c
77NOASM+= sigaction.o
78.else
79INTERPOSED+= sigaction

--- 383 unchanged lines hidden ---