1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-04 09:42:08 +03:00
Files
libssh/tests/chroot_wrapper.c
Jakub Jelen b393f7e5e9 tests: Temporarily build chroot_wrapper
(cherry-picked from commit 094aa5eb)
2018-10-05 12:09:45 +02:00

9 lines
107 B
C

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