amiga-libnix3/stdlib/atoi.c

6 lines
100 B
C

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