1/*	$OpenBSD: wcstoull.c,v 1.2 2005/08/08 08:05:35 espie Exp $	*/
2/*	$NetBSD: wcstoull.c,v 1.1 2003/03/11 09:21:24 tshiozak Exp $	*/
3
4#include <ctype.h>
5#include <errno.h>
6#include <limits.h>
7#include <stdlib.h>
8#include <wchar.h>
9#include <wctype.h>
10
11#include "wctoint.h"
12
13#define	FUNCNAME	wcstoull
14typedef unsigned long long int uint_type;
15#define	MAX_VALUE	ULLONG_MAX
16
17#include "_wcstoul.h"
18