summaryrefslogtreecommitdiff
path: root/test/chroot.c
blob: 0927112c9102699fba2f61477f591cc64ceddd0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Items: chroot(
 * Standardized-By: SuS
 * Not-Detected-by: gcc-4.4.3 + Linux
 */

#include <unistd.h>

main(int arg, char **argv)
{
    (void)chroot("/");
}