diff options
Diffstat (limited to 'src/conf/pathconf.c')
-rw-r--r-- | src/conf/pathconf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/conf/pathconf.c b/src/conf/pathconf.c index 01e19c59..267982e0 100644 --- a/src/conf/pathconf.c +++ b/src/conf/pathconf.c @@ -4,3 +4,11 @@ long pathconf(const char *path, int name) { return fpathconf(-1, name); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |