diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-21 23:29:52 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:31 +0200 |
commit | f0e0d954f28e34497d999f7d4c1249bb20301880 (patch) | |
tree | 22251de82f2e50cbcb8645683ef8388eb0ec554a /libc | |
parent | e94b85159291ab9dd2c2bda440a284881f1c1614 (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')
-rw-r--r-- | libc/sysdeps/linux/common/chdir.c | 10 |
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) |