/
githubmirror
/
gawk
Обзор
Документация
Войти
/
githubmirror
/
gawk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pc/popen.h
17 строк
437 B
Arnold D. Robbins
A number of pc related fixes.
24 окт 2011, 07:22
24 окт 2011, 07:22
fc34db7
Код
Авторство
О чём код?
/* ** popen.h -- prototypes for pipe functions */ #if !defined (__DJGPP__) # if defined (popen) # undef popen # undef pclose # endif # define popen(c, m) os_popen(c, m) # define pclose(f) os_pclose(f) extern FILE *os_popen( const char *, const char * ); extern int os_pclose( FILE * ); # ifdef __MINGW32__ # define system(c) os_system(c) extern int os_system( const char * ); # endif /* __MINGW32__ */ #endif /* !__DJGPP__ */