reactos/lib/sdk/crt/string/strtoi64.c
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

13 lines
155 B
C

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