c99 and popen()

  • Thread starter Fredrik Svensson
  • Start date
F

Fredrik Svensson

I just tried to compile a program that has popen() and pclose() in it,
with -std=c99 in gcc. And it returns that it is an implicit declaration of
function popen, so it's probably not in the stdio.h include which it is
from c90. How do I get popen() in c99?

/Fredrik
 
P

P.J. Plauger

Fredrik Svensson said:
I just tried to compile a program that has popen() and pclose() in it,
with -std=c99 in gcc. And it returns that it is an implicit declaration of
function popen, so it's probably not in the stdio.h include which it is
from c90. How do I get popen() in c99?

It's a Posix function. Inspect that header to see if there's some
macro you have to define to enable the declaration of popen.
Otherwise, you're probably out of luck.

P.J. Plauger
Dinkumware, Ltd.
http://www.dinkumware.com
 
F

Flash Gordon

Fredrik said:
I just tried to compile a program that has popen() and pclose() in it,
with -std=c99 in gcc. And it returns that it is an implicit declaration
of function popen, so it's probably not in the stdio.h include which it
is from c90. How do I get popen() in c99?

popen and pclose are not part of standard C so if you want to use them
you need to do some implementation specific magic. comp.unix.programmer
might be a good place to ask.
 
T

those who know me have no need of my name

in comp.lang.c i read:
It's a Posix function. Inspect that header to see if there's some
macro you have to define to enable the declaration of popen.

even better, follow the posix guidelines for enabling features. which you
can discuss with other posix/unix-ish programmers in comp.unix.programmer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Staff online

Members online

Forum statistics

Threads
474,175
Messages
2,570,942
Members
47,489
Latest member
BrigidaD91

Latest Threads

Top