OSDN Git Service

a182df9b4bd93ed79b228a42284a6ecc9650bd93
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / pivot_root.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * pivot_root() for uClibc
4  *
5  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6  *
7  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
8  */
9
10 #include "syscalls.h"
11
12 #ifdef __NR_pivot_root
13 _syscall2(int, pivot_root, const char *, new_root, const char *, put_old);
14 #else
15 int pivot_root(const char *new_root, const char *put_old)
16 {
17         __set_errno(ENOSYS);
18         return -1;
19 }
20 #endif