summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/chdir.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-21 23:29:52 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:31 +0200
commitf0e0d954f28e34497d999f7d4c1249bb20301880 (patch)
tree22251de82f2e50cbcb8645683ef8388eb0ec554a /libc/sysdeps/linux/common/chdir.c
parente94b85159291ab9dd2c2bda440a284881f1c1614 (diff)
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>
Diffstat (limited to 'libc/sysdeps/linux/common/chdir.c')
-rw-r--r--libc/sysdeps/linux/common/chdir.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/libc/sysdeps/linux/common/chdir.c b/libc/sysdeps/linux/common/chdir.c
index e13810196..5328fd2f7 100644
--- a/libc/sysdeps/linux/common/chdir.c
+++ b/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)