diff options
Diffstat (limited to 'src/unistd/lseek.c')
-rw-r--r-- | src/unistd/lseek.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/lseek.c b/src/unistd/lseek.c index f5b66682..be3e74a8 100644 --- a/src/unistd/lseek.c +++ b/src/unistd/lseek.c @@ -12,3 +12,11 @@ off_t __lseek(int fd, off_t offset, int whence) } weak_alias(__lseek, lseek); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |