소스 검색

remove unused Linux 2.0 compat code, otherwise c6x without NPTL is broken

Waldemar Brodkorb 11 년 전
부모
커밋
0188150363
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      libc/stdlib/system.c

+ 0 - 4
libc/stdlib/system.c

@@ -20,11 +20,7 @@
 
 extern __typeof(system) __libc_system;
 #if !defined __UCLIBC_HAS_THREADS_NATIVE__
-/* uClinux-2.0 has vfork, but Linux 2.0 doesn't */
 #include <sys/syscall.h>
-#ifndef __NR_vfork
-# define vfork fork
-#endif
 
 int __libc_system(const char *command)
 {