amiga-libnix3/stdlib/atol.c

6 lines
101 B
C

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