summaryrefslogtreecommitdiff
path: root/libc/stdio/fdopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/fdopen.c')
-rw-r--r--libc/stdio/fdopen.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/stdio/fdopen.c b/libc/stdio/fdopen.c
new file mode 100644
index 000000000..fa08c976d
--- /dev/null
+++ b/libc/stdio/fdopen.c
@@ -0,0 +1,17 @@
+/* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
+ *
+ * GNU Library General Public License (LGPL) version 2 or later.
+ *
+ * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
+ */
+
+#include "_stdio.h"
+
+FILE *fdopen(int filedes, const char *mode)
+{
+ intptr_t cur_mode;
+
+ return (((cur_mode = fcntl(filedes, F_GETFL))) != -1)
+ ? _stdio_fopen(cur_mode, mode, NULL, filedes)
+ : NULL;
+}