11.3Smartin/* $NetBSD: wchar_limits.h,v 1.3 2012/12/27 07:14:24 martin Exp $ */ 21.1Scherry 31.1Scherry/*- 41.1Scherry * Copyright (c) 2004 The NetBSD Foundation, Inc. 51.1Scherry * All rights reserved. 61.1Scherry * 71.1Scherry * This code is derived from software contributed to The NetBSD Foundation 81.1Scherry * by Klaus Klein. 91.1Scherry * 101.1Scherry * Redistribution and use in source and binary forms, with or without 111.1Scherry * modification, are permitted provided that the following conditions 121.1Scherry * are met: 131.1Scherry * 1. Redistributions of source code must retain the above copyright 141.1Scherry * notice, this list of conditions and the following disclaimer. 151.1Scherry * 2. Redistributions in binary form must reproduce the above copyright 161.1Scherry * notice, this list of conditions and the following disclaimer in the 171.1Scherry * documentation and/or other materials provided with the distribution. 181.1Scherry * 191.1Scherry * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 201.1Scherry * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 211.1Scherry * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 221.1Scherry * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 231.1Scherry * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 241.1Scherry * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 251.1Scherry * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 261.1Scherry * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 271.1Scherry * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 281.1Scherry * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 291.1Scherry * POSSIBILITY OF SUCH DAMAGE. 301.1Scherry */ 311.1Scherry 321.1Scherry#ifndef _IA64_WCHAR_LIMITS_H_ 331.1Scherry#define _IA64_WCHAR_LIMITS_H_ 341.1Scherry 351.3Smartin/* 361.3Smartin * 7.18.3 Limits of other integer types 371.3Smartin */ 381.3Smartin 391.3Smartin/* limits of wchar_t */ 401.3Smartin#define WCHAR_MIN (-0x7fffffff-1) /* wchar_t */ 411.3Smartin#define WCHAR_MAX 0x7fffffff /* wchar_t */ 421.3Smartin 431.3Smartin/* limits of wint_t */ 441.3Smartin#define WINT_MIN (-0x7fffffff-1) /* wint_t */ 451.3Smartin#define WINT_MAX 0x7fffffff /* wint_t */ 461.3Smartin 471.1Scherry#endif /* !_IA64_WCHAR_LIMITS_H_ */ 48