- Introduce an strtol static library that drivers can use to get access to strtol-style functions
CORE-11184

svn path=/trunk/; revision=71481
This commit is contained in:
Thomas Faber 2016-06-01 07:09:50 +00:00
parent fd9cdcb64f
commit d317d4fbcc

View file

@ -55,3 +55,14 @@ add_dependencies(memcmp psdk)
add_library(getopt misc/getopt.c) add_library(getopt misc/getopt.c)
add_target_compile_definitions(getopt _DLL __USE_CRTIMP) add_target_compile_definitions(getopt _DLL __USE_CRTIMP)
add_dependencies(getopt psdk) add_dependencies(getopt psdk)
add_library(strtol
string/ctype.c
string/iswctype.c
string/strtoi64.c
string/strtol.c
string/strtoul.c
string/strtoull.c
string/wctype.c)
add_target_compile_definitions(strtol _LIBCNT_)
add_dependencies(strtol psdk)