1 1.1 tshiozak /* $NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $ */ 2 1.1 tshiozak 3 1.1 tshiozak #include <sys/cdefs.h> 4 1.1 tshiozak #if defined(LIBC_SCCS) && !defined(lint) 5 1.1 tshiozak __RCSID("$NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $"); 6 1.1 tshiozak #endif /* LIBC_SCCS and not lint */ 7 1.1 tshiozak 8 1.1 tshiozak #include <assert.h> 9 1.1 tshiozak #include <ctype.h> 10 1.1 tshiozak #include <errno.h> 11 1.1 tshiozak #include <limits.h> 12 1.1 tshiozak #include <stdlib.h> 13 1.1 tshiozak #include <wchar.h> 14 1.1 tshiozak #include <wctype.h> 15 1.1 tshiozak 16 1.1 tshiozak #include "__wctoint.h" 17 1.1 tshiozak 18 1.1 tshiozak #define _FUNCNAME wcstoull 19 1.1 tshiozak #define __UINT /* LONGLONG */ unsigned long long int 20 1.1 tshiozak #define __UINT_MAX ULLONG_MAX 21 1.1 tshiozak 22 1.1 tshiozak #include "_wcstoul.h" 23