--- /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