diff -r 000000000000 -r 6f7a81934006 lib/misc/itoa.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lib/misc/itoa.h Wed Jan 16 22:39:43 2008 +0100 @@ -0,0 +1,10 @@ +#ifndef ITOA__H__ +#define ITOA__H__ + +#ifdef __cplusplus +extern "C" const char* itoa(int, int = 0); +#else +extern const char* itoa(int, int); +#endif + +#endif