1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-28 01:41:48 +03:00

tests: Temporarily build chroot_wrapper

This commit is contained in:
Jakub Jelen
2017-11-23 12:52:08 +01:00
committed by Andreas Schneider
parent 5d3ab421e1
commit 094aa5eb02
2 changed files with 18 additions and 1 deletions

8
tests/chroot_wrapper.c Normal file
View File

@ -0,0 +1,8 @@
/* silent gcc */
int chroot(const char *);
int chroot(const char *path)
{
(void)path;
return 0;
}