mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 22:03:48 +00:00
[CMAKE]
We provide everything (headers, libraries, executables...), so tell it to cmake [CRT] The crt library must provide a and w version of the functions and not rely to _UNICODE being set or not svn path=/branches/cmake-bringup/; revision=51273
This commit is contained in:
parent
3793b7fdf1
commit
04fa57f360
2 changed files with 10 additions and 7 deletions
|
@ -1,14 +1,17 @@
|
|||
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
||||
#include <stdlib.h>
|
||||
#include <tchar.h>
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
long
|
||||
_ttol(const _TCHAR *str)
|
||||
long atol(const char *str)
|
||||
{
|
||||
return (long)_ttoi64(str);
|
||||
return (long)_atoi64(str);
|
||||
}
|
||||
|
||||
long _wtol(const wchar_t *str)
|
||||
{
|
||||
return (long)_wtoi64(str);
|
||||
}
|
||||
|
||||
int _atoldbl(_LDOUBLE *value, char *str)
|
||||
|
@ -16,4 +19,4 @@ int _atoldbl(_LDOUBLE *value, char *str)
|
|||
/* FIXME needs error checking for huge/small values */
|
||||
//*value = strtold(str,0);
|
||||
return -1;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue