xref: /netbsd-src/lib/libc/locale/wcstoll.c (revision d710132b4b8ce7f7cccaaf660cb16aa16b4077a0)
1 /* $NetBSD: wcstoll.c,v 1.1 2003/03/11 09:21:23 tshiozak Exp $ */
2 
3 #include <sys/cdefs.h>
4 #if defined(LIBC_SCCS) && !defined(lint)
5 __RCSID("$NetBSD: wcstoll.c,v 1.1 2003/03/11 09:21:23 tshiozak Exp $");
6 #endif /* LIBC_SCCS and not lint */
7 
8 #include <assert.h>
9 #include <ctype.h>
10 #include <errno.h>
11 #include <limits.h>
12 #include <stdlib.h>
13 #include <wchar.h>
14 #include <wctype.h>
15 
16 #include "__wctoint.h"
17 
18 #define	_FUNCNAME	wcstoll
19 #define	__INT		/* LONGLONG */ long long int
20 #define	__INT_MIN	LLONG_MIN
21 #define	__INT_MAX	LLONG_MAX
22 
23 #include "_wcstol.h"
24