diff options
Diffstat (limited to 'src/stat/fstat.c')
-rw-r--r-- | src/stat/fstat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stat/fstat.c b/src/stat/fstat.c index fd28b8ac..4d7d9ecc 100644 --- a/src/stat/fstat.c +++ b/src/stat/fstat.c @@ -11,3 +11,11 @@ int __fstat(int fd, struct stat *st) } weak_alias(__fstat, fstat); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |