diff options
Diffstat (limited to 'src/stdio/fmemopen.c')
-rw-r--r-- | src/stdio/fmemopen.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fmemopen.c b/src/stdio/fmemopen.c index 343e3e3f..1fe20c75 100644 --- a/src/stdio/fmemopen.c +++ b/src/stdio/fmemopen.c @@ -125,3 +125,11 @@ FILE *fmemopen(void *restrict buf, size_t size, const char *restrict mode) return __ofl_add(&f->f); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |