summaryrefslogtreecommitdiffstats
path: root/newlib/libc/posix/popen.c
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2009-08-18 17:07:55 +0000
committerEric Blake <eblake@redhat.com>2009-08-18 17:07:55 +0000
commite9708d920c07914c671b45616d985b26d0abf0b3 (patch)
treea5018c679671c63c70d3bb60d2aafa741727b121 /newlib/libc/posix/popen.c
parenta0511609626a3eabf8fa4a2b7769b9096ae4caa6 (diff)
downloadcygnal-e9708d920c07914c671b45616d985b26d0abf0b3.tar.gz
cygnal-e9708d920c07914c671b45616d985b26d0abf0b3.tar.bz2
cygnal-e9708d920c07914c671b45616d985b26d0abf0b3.zip
* libc/posix/popen.c (popen): Fix documented prototype.
Diffstat (limited to 'newlib/libc/posix/popen.c')
-rw-r--r--newlib/libc/posix/popen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/posix/popen.c b/newlib/libc/posix/popen.c
index accf76c98..38978c7aa 100644
--- a/newlib/libc/posix/popen.c
+++ b/newlib/libc/posix/popen.c
@@ -43,7 +43,7 @@ INDEX
ANSI_SYNOPSIS
#include <stdio.h>
- FILE *popen(char *<[s]>, char *<[mode]>);
+ FILE *popen(const char *<[s]>, const char *<[mode]>);
int pclose(FILE *<[f]>);