Selaa lähdekoodia

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 vuotta sitten
vanhempi
commit
f0e0d954f2
1 muutettua tiedostoa jossa 1 lisäystä ja 9 poistoa
  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)