fixed aliased functions; they are now in the *.c files and will not be
[util-vserver.git] / util-vserver / lib / fmtx-32.c
index 06af2c1..290a01f 100644 (file)
 
 #define FMT_BITSIZE    32
 #include "fmtx.hc"
+
+#if __WORDSIZE==FMT_BITSIZE
+size_t FMT_P(xulong)(char *ptr, unsigned long val) ALIASFUNC(xuint32);
+size_t FMT_P( xlong)(char *ptr,          long val) ALIASFUNC( xint32);
+#endif
+
+size_t FMT_P(xuint) (char *ptr, unsigned int val, char base) ALIASFUNC(xuint32);
+size_t FMT_P( xint) (char *ptr,          int val, char base) ALIASFUNC( xint32);