fxlibc/src/stdlib/atol.c

7 lines
87 B
C

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