1 1.1 tshiozak /* $NetBSD: wcstoumax.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: wcstoumax.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 <inttypes.h> 12 1.1 tshiozak #include <limits.h> 13 1.1 tshiozak #include <stdlib.h> 14 1.1 tshiozak #include <wchar.h> 15 1.1 tshiozak #include <wctype.h> 16 1.1 tshiozak 17 1.1 tshiozak #include "__wctoint.h" 18 1.1 tshiozak 19 1.1 tshiozak #define _FUNCNAME wcstoumax 20 1.1 tshiozak #define __UINT uintmax_t 21 1.1 tshiozak #define __UINT_MAX UINTMAX_MAX 22 1.1 tshiozak 23 1.1 tshiozak #include "_wcstoul.h" 24