1 /* $OpenBSD: wcstoumax.c,v 1.1 2009/01/13 18:13:51 kettenis Exp $ */ 2 /* $NetBSD: wcstoul.c,v 1.2 2003/03/11 09:21:24 tshiozak Exp $ */ 3 4 #include <ctype.h> 5 #include <errno.h> 6 #include <inttypes.h> 7 #include <stdint.h> 8 #include <stdlib.h> 9 #include <wchar.h> 10 #include <wctype.h> 11 12 #include "wctoint.h" 13 14 #define FUNCNAME wcstoumax 15 typedef uintmax_t uint_type; 16 #define MAX_VALUE UINTMAX_MAX 17 18 #include "_wcstoul.h" 19