This website requires JavaScript.
Explore
Help
Sign In
libs
/
newlib-cygwin
mirror of
git://sourceware.org/git/newlib-cygwin.git
Watch
4
Star
0
Fork
You've already forked newlib-cygwin
0
Code
Issues
Projects
Releases
Wiki
Activity
57d7cfcdb7
newlib-cygwin
/
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 18:20:48 +08: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 09:03:43 +08:00
{
return
_wtoi64
(
_w
)
;
}