home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d473
/
cnewssrc
/
cnews_src.lzh
/
libamiga
/
clsexec.c
next >
Wrap
C/C++ Source or Header
|
1990-12-25
|
419b
|
22 lines
/* :ts=4
* set close on exec (on Unix)
*
* $Id: clsexec.c,v 1.1 90/05/21 23:50:22 crash Exp Locker: crash $
*
* $Log: clsexec.c,v $
* Revision 1.1 90/05/21 23:50:22 crash
* Initial revision
*
*/
#include <stdio.h>
void fclsexec(FILE *fp)
{
sysfile("Should be setting fp (fd %d) to CLS_ON_EXEC\n", fileno(fp));
#if 0
#include <sgtty.h>
(void) ioctl(fileno(fp), FIOCLEX, (struct sgttyb *)NULL);
#endif
}