#include <ctype.h>
/* states: S_N: normal, S_I: comparing integral part, S_F: comparing
- Fractionnal parts, S_Z: idem but with leading Zeroes only */
+ fractionnal parts, S_Z: idem but with leading Zeroes only */
#define S_N 0x0
#define S_I 0x4
#define S_F 0x8
*/
int
-strverscmp (s1, s2)
+__strverscmp (s1, s2)
const char *s1;
const char *s2;
{
return state;
}
}
+weak_alias (__strverscmp, strverscmp)