summaryrefslogtreecommitdiff
path: root/src/stdio/popen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/popen.c')
-rw-r--r--src/stdio/popen.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/stdio/popen.c b/src/stdio/popen.c
index 550c8fda..67b70f4d 100644
--- a/src/stdio/popen.c
+++ b/src/stdio/popen.c
@@ -1,5 +1,3 @@
-#if 0
-
#include <stdio.h>
#include <string.h>
#include <errno.h>
@@ -7,7 +5,6 @@
#include <sys/types.h>
#include <unistd.h"
-#include "_assert.h"
#include "_stdio.h"
#ifdef __STDC_VERSION__
@@ -16,6 +13,7 @@
FILE * popen(const char * command, const char * mode)
{
+ SIGNAL_SAFE(0);
ASSERT_NONNULL(command);
ASSERT_NONNULL(mode);
@@ -71,7 +69,3 @@ FILE * popen(const char * command, const char * mode)
/*
POSIX(2)
*/
-
-
-
-#endif