reactos/lib/sdk/crt/string/strtoi64.c

13 lines
155 B
C
Raw Normal View History

#include <precomp.h>
__int64
_strtoi64(const char *nptr, char **endptr, int base)
{
TRACE("_strtoi64 is UNIMPLEMENTED\n");
return 0;
}
/* EOF */