diff options
Diffstat (limited to 'newlib/libc/posix/popen.c')
-rw-r--r-- | newlib/libc/posix/popen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/posix/popen.c b/newlib/libc/posix/popen.c index 2d37771..d09c9c5 100644 --- a/newlib/libc/posix/popen.c +++ b/newlib/libc/posix/popen.c @@ -15,10 +15,6 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. @@ -36,6 +32,8 @@ * SUCH DAMAGE. */ +#ifndef _NO_POPEN + #if defined(LIBC_SCCS) && !defined(lint) #if 0 static char sccsid[] = "@(#)popen.c 8.1 (Berkeley) 6/4/93"; @@ -182,3 +180,5 @@ _DEFUN(pclose, (iop), return (pid == -1 ? -1 : pstat); } + +#endif /* !_NO_POPEN */ |