From: Peter S. Mazinger Date: Fri, 15 Apr 2011 23:46:36 +0000 (+0200) Subject: pivot_root.c: move prototype into guard X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7c966f52428c61761fb1eda7cbee90cf400666bc;p=uclinux-h8%2Fuclibc-ng.git pivot_root.c: move prototype into guard Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- diff --git a/libc/sysdeps/linux/common/pivot_root.c b/libc/sysdeps/linux/common/pivot_root.c index 0e738d53f..78f71efa4 100644 --- a/libc/sysdeps/linux/common/pivot_root.c +++ b/libc/sysdeps/linux/common/pivot_root.c @@ -9,7 +9,7 @@ #include -int pivot_root(const char *new_root, const char *put_old); #ifdef __NR_pivot_root +int pivot_root(const char *new_root, const char *put_old); _syscall2(int, pivot_root, const char *, new_root, const char *, put_old) #endif