From 40e2986d3d196855bba3836a60a482fd3a0f73a8 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 31 Jan 2024 17:07:29 -0500 Subject: remove posix and xopen specific functions --- src/stdio/fdopen.c | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/stdio/fdopen.c (limited to 'src/stdio/fdopen.c') diff --git a/src/stdio/fdopen.c b/src/stdio/fdopen.c deleted file mode 100644 index 875d5b9a..00000000 --- a/src/stdio/fdopen.c +++ /dev/null @@ -1,13 +0,0 @@ -#include -#include "_stdio.h" - -FILE * fdopen(int fildes, const char * mode) -{ - SIGNAL_SAFE(0); - (void)fildes; (void)mode; - return NULL; -} - -/* -POSIX(1) -*/ -- cgit v1.2.1