diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-12-02 19:06:32 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-12-02 19:06:32 +0000 |
commit | badf426f10ec949aa853aff22123c4e783a421c5 (patch) | |
tree | d02c50fd4ae6e68e687a6b4cba6471c9a135867f /libc/sysdeps/linux/sh/Makefile | |
parent | 49583513c6f0575f89c32f4c38315327ab41721f (diff) |
Add a syscall() implementation using a hacked version of the syscall6 macro.
Untested, but syscall() is needed by busybox for pivot_root at least.
Diffstat (limited to 'libc/sysdeps/linux/sh/Makefile')
-rw-r--r-- | libc/sysdeps/linux/sh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sh/Makefile b/libc/sysdeps/linux/sh/Makefile index f0eaa19fe..0bcdaac4f 100644 --- a/libc/sysdeps/linux/sh/Makefile +++ b/libc/sysdeps/linux/sh/Makefile @@ -31,7 +31,7 @@ CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o SSRC=setjmp.S __longjmp.S vfork.S clone.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) -CSRC=_mmap.c longjmp.c pipe.c __init_brk.c brk.c sbrk.c +CSRC=_mmap.c longjmp.c pipe.c __init_brk.c brk.c sbrk.c syscall.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(SOBJS) $(MOBJ) $(COBJS) |