diff options
Diffstat (limited to 'src/linux/swap.c')
-rw-r--r-- | src/linux/swap.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/swap.c b/src/linux/swap.c index 8137d51e..1d68a84b 100644 --- a/src/linux/swap.c +++ b/src/linux/swap.c @@ -10,3 +10,11 @@ int swapoff(const char *path) { return syscall(SYS_swapoff, path); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |