Don't duplicate string and ctype functions 2 (or even 3) times... we have stringlib...
[reactos.git] / reactos / lib / string / wtol.c
1 #include <string.h>
2 #include <stdlib.h>
3
4 /*
5 * @implemented
6 */
7 long
8 _wtol(const wchar_t *str)
9 {
10 return wcstol(str, 0, 10);
11 }