Files
2010-07-27 16:58:17 +00:00

6 lines
101 B
C

#include <stdio.h>
#include <stdlib.h>
long atol(const char *nptr)
{ return strtol(nptr,NULL,10); }