1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-04-19 02:24:03 +03:00
libssh/tests/chroot_wrapper.c
2017-12-15 12:00:49 +01:00

9 lines
107 B
C

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