summaryrefslogtreecommitdiff
path: root/libc/stdio/popen.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-12-28 23:05:39 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2014-12-28 23:05:39 -0600
commitc5722d63ede04b656c7ac8607d075db576a226d8 (patch)
treec9ec93c8e50ad8ff6468c17dd0a54ddae32bd4f6 /libc/stdio/popen.c
parent6fc08ddc732c8c0a56391d30d4e86aa46bda5495 (diff)
reduce some unneeded warnings.
Diffstat (limited to 'libc/stdio/popen.c')
-rw-r--r--libc/stdio/popen.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/stdio/popen.c b/libc/stdio/popen.c
index 40a6ddac1..e1b1d4038 100644
--- a/libc/stdio/popen.c
+++ b/libc/stdio/popen.c
@@ -124,8 +124,6 @@ FILE *popen(const char *command, const char *modes)
return NULL;
}
-#warning is pclose correct wrt the new mutex semantics?
-
int pclose(FILE *stream)
{
struct popen_list_item *p;