aboutsummaryrefslogtreecommitdiff
path: root/tests/chroot_wrapper.c
blob: 3545f39756406e6a341f5c8c96a919f53a8556f0 (plain)
1
2
3
4
5
6
7
8
/* silent gcc */
int chroot(const char *);

int chroot(const char *path)
{
    (void)path;
    return 0;
}