"Richard L. Hamilton" <[email protected]> wrote:

..
> fexecve
..
> getline

BTW: these two functions are violating the POSIX standard. 

The official rules of the POSIX commitee is not to invalidate existing software 
and to follow general naming conventions.

The interface for fexecve() (since 1982) is:

int fexecve (const char *, FILE *, FILE *, FILE *, char * const *, char * const 
*);

and a function that uses a file descriptor would need to be falled "fdexecve()"
instead of "fexecve()".

The interface for getline() anf fgetline() (since 1982) is:

int getline (char *, int);
int fgetline (FILE *, char *, int);

Jörg

-- 
 EMail:[email protected] (home) Jörg Schilling D-13353 Berlin
       [email protected]                (uni)  
       [email protected] (work) Blog: 
http://schily.blogspot.com/
 URL:  http://cdrecord.berlios.de/private/ ftp://ftp.berlios.de/pub/schily
_______________________________________________
opensolaris-code mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/opensolaris-code

Reply via email to