Mostly minor updates to the source tree for portcls.
[reactos.git] / reactos / lib / string / atol.c
1 #include <string.h>
2 #include <stdlib.h>
3
4 /*
5 * @implemented
6 */
7 long
8 atol(const char *str)
9 {
10 return strtol(str, 0, 10);
11 }