From 253a32e2f9ff1cbb8edbe7c79834a678daebeb93 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 9 Feb 2019 13:14:01 -0500 Subject: merge POSIX.1-1988/1990 --- src/stdio/fdopen.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/stdio/fdopen.c (limited to 'src/stdio/fdopen.c') diff --git a/src/stdio/fdopen.c b/src/stdio/fdopen.c new file mode 100644 index 00000000..9f6f8d72 --- /dev/null +++ b/src/stdio/fdopen.c @@ -0,0 +1,10 @@ +#include + +FILE * fdopen(int fildes, const char * mode) +{ + (void)fildes; (void)mode; + return NULL; +} +/* +POSIX(1) +*/ -- cgit v1.2.1