Hi Ron, > unix.c: In function 'maketmp': > unix.c:297: warning: implicit declaration of function 'mkstemp'
This is saying a call to mkstemp() is occurring without a function prototype being seen that declares its arguments and return type; an implicit declaration rather than explicit is being used. The prototype for mkstemp() can be found by `#include <stdlib.h>'. Cheers, Ralph. _______________________________________________ GCCSDK mailing list [email protected] Bugzilla: http://www.riscos.info/bugzilla/index.cgi List Info: http://www.riscos.info/mailman/listinfo/gcc Main Page: http://www.riscos.info/index.php/GCCSDK
