summaryrefslogtreecommitdiff
path: root/src/stdio/fopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fopen.c')
-rw-r--r--src/stdio/fopen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/fopen.c b/src/stdio/fopen.c
index 4c9eabd7..dfb4f27c 100644
--- a/src/stdio/fopen.c
+++ b/src/stdio/fopen.c
@@ -37,6 +37,8 @@ FILE * fopen(const char * restrict filename, const char * restrict mode)
return freopen(filename, mode, f);
}
+CHECK_2(FILE *, NULL, fopen, const char * restrict, const char * restrict)
+
/***
opens a file stream associated with the file ARGUMENT(filename).