On 06/03/08 09:27 +0100, Martin Trautmann wrote:
Jordan Crouse wrote:
And to celebrate the good start, how about something practical to go with it? Here is something I call coreinfo:
Thanks!
I'll have to find out about the proper stdio.h include file or sprintf declaration.
When I use my /usr/include/stdio.h I get redefinitions of typedef ‘FILE’ and struct _IO_FILE
Otherwise without including stdio.h I see incompatible implicit declaration of built-in function ‘sprintf’
Oops - yep. sprintf is missing from the header file.
Add:
int sprintf(char * buf, const char *fmt, ...);
to include/libpayload.h