diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-03-06 15:27:46 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-03-06 15:27:46 +0000 |
commit | fae403620c5c9329a78f5da5cd81b8f04f45a012 (patch) | |
tree | d76df713ba1323064ab83d319a54c7caf9572b9b /libc/sysdeps/linux/i386 | |
parent | 80831beee1c1db87b63e15efdcbcd0ed4354c62f (diff) |
Move fork to common/syscalls (with NO_MMU check). Add Makefile to sparc so
make clean works.
Diffstat (limited to 'libc/sysdeps/linux/i386')
-rw-r--r-- | libc/sysdeps/linux/i386/Makefile | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/i386/__uClibc_syscall.S | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile index 47fea7402..d54c78d8b 100644 --- a/libc/sysdeps/linux/i386/Makefile +++ b/libc/sysdeps/linux/i386/Makefile @@ -34,7 +34,7 @@ ifeq ($(UNIFIED_SYSCALL),true) endif SOBJS=$(patsubst %.S,%.o, $(SSRC)) -CSRC=fork.c __init_brk.c brk.c sbrk.c +CSRC=__init_brk.c brk.c sbrk.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(SOBJS) $(COBJS) diff --git a/libc/sysdeps/linux/i386/__uClibc_syscall.S b/libc/sysdeps/linux/i386/__uClibc_syscall.S index 9e82d7acb..cc785efd7 100644 --- a/libc/sysdeps/linux/i386/__uClibc_syscall.S +++ b/libc/sysdeps/linux/i386/__uClibc_syscall.S @@ -16,8 +16,6 @@ __uClibc_syscall: int $0x80 #NO_APP cmpl $-4095,%eax - /* jae .L5 */ - /* cmpl $-126,%eax */ jbe .L5 negl %eax movl %eax,errno |