File: chroot_wrapper.c

package info (click to toggle)
libssh 0.11.2-1%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,668 kB
  • sloc: ansic: 100,163; cpp: 421; sh: 186; makefile: 25; javascript: 20; python: 9
file content (8 lines) | stat: -rw-r--r-- 107 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
/* silent gcc */
int chroot(const char *);

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