This website requires JavaScript.
Explore
Help
Sign In
JehanneOS
/
newlib
Watch
1
Star
0
Fork
You've already forked newlib
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
52a5f8cc1a
newlib
/
winsup
/
mingw
/
mingwex
/
wtoll.c
4 lines
83 B
C
Raw
Normal View
History
Unescape
Escape
* include/_mingw.h: Increment version to 2.0. * Makefile.in: Ditto. Merge in mingwex branch.
2002-06-13 12:20:48 +02:00
#
include
<stdlib.h>
long
long
wtoll
(
const
wchar_t
*
_w
)
Get rid of some warnings * mingwex/dirent.c (_topendir): Eliminate signed/unsigned warning. * mingwex/strtoimax.c (strtoimax): Likewise. * mingwex/wcstoimax.c (wcstoimax): Likewise. * mingwex/wtoll.c (wtoll): Remove unnecessary ';' * mingwex/fesentenv.c: Include float.h. * mingwex/math/powl.c: Eliminate type punning/strict aliasing warning. * mingwex/math/tanhl.c: Eliminate signed/unsigned warning in constants. * mingwex/math/tgammal.c: Likewise.
2003-03-17 02:03:43 +01:00
{
return
_wtoi64
(
_w
)
;
}