OpenBSD-4.6/lib/libc/locale/wcstol.c

Compare this file to the similar file:
Show the results in this format:

/*	$OpenBSD: wcstol.c,v 1.2 2005/08/08 08:05:35 espie Exp $	*/
/* $NetBSD: wcstol.c,v 1.2 2003/03/11 09:21:23 tshiozak Exp $ */

#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <wchar.h>
#include <wctype.h>

#include "wctoint.h"

#define	FUNCNAME	wcstol
typedef long int_type;
#define	MIN_VALUE	LONG_MIN
#define	MAX_VALUE	LONG_MAX

#include "_wcstol.h"