david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/vsprintf.h

15 lines
366 B
C
Raw Normal View History

#ifndef VSPRINTF_H
#define VSPRINTF_H
/*
* Note that we cannot use __attribute__ (( format ( printf, ... ) ))
* to get automatic type checking on arguments, because we use
* non-standard format characters such as "%!" and "%@".
*
*/
extern int sprintf ( char *buf, const char *fmt, ... );
extern void printf ( const char *fmt, ... );
#endif /* VSPRINTF_H */