fxlibc/src/libc/stdlib/atol.c

7 lines
87 B
C
Raw Normal View History

2021-05-20 11:11:24 +02:00
#include <stdlib.h>
long int atol(char const *ptr)
{
return strtol(ptr, NULL, 10);
}