Преглед на файлове

chdir.c: simplify code

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger преди 13 години
родител
ревизия
f0e0d954f2
променени са 1 файла, в които са добавени 1 реда и са изтрити 9 реда
  1. 1 9
      libc/sysdeps/linux/common/chdir.c

+ 1 - 9
libc/sysdeps/linux/common/chdir.c

@@ -8,15 +8,7 @@
  */
 
 #include <sys/syscall.h>
-#include <string.h>
 #include <unistd.h>
-#include <sys/param.h>
 
-
-#define __NR___syscall_chdir __NR_chdir
-static __inline__ _syscall1(int, __syscall_chdir, const char *, path)
-int chdir(const char *path)
-{
-	return __syscall_chdir(path);
-}
+_syscall1(int, chdir, const char *, path)
 libc_hidden_def(chdir)