inttypes.h revision 4fd606d1f5abe38e1f42c38de1d2e895166bd0f4
2N/A/* $NetBSD: inttypes.h,v 1.4 2001/04/28 15:41:30 kleink Exp $ */
2N/A
2N/A/*-
2N/A * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
2N/A * All rights reserved.
2N/A *
2N/A * This code is derived from software contributed to The NetBSD Foundation
2N/A * by Klaus J. Klein.
2N/A *
2N/A * Redistribution and use in source and binary forms, with or without
2N/A * modification, are permitted provided that the following conditions
2N/A * are met:
2N/A * 1. Redistributions of source code must retain the above copyright
2N/A * notice, this list of conditions and the following disclaimer.
2N/A * 2. Redistributions in binary form must reproduce the above copyright
2N/A * notice, this list of conditions and the following disclaimer in the
2N/A * documentation and/or other materials provided with the distribution.
2N/A * 3. All advertising materials mentioning features or use of this software
2N/A * must display the following acknowledgement:
2N/A * This product includes software developed by the NetBSD
2N/A * Foundation, Inc. and its contributors.
2N/A * 4. Neither the name of The NetBSD Foundation nor the names of its
2N/A * contributors may be used to endorse or promote products derived
2N/A * from this software without specific prior written permission.
2N/A *
2N/A * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2N/A * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2N/A * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2N/A * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2N/A * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2N/A * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2N/A * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2N/A * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2N/A * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2N/A * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2N/A * POSSIBILITY OF SUCH DAMAGE.
2N/A */
2N/A
2N/A#ifndef _SYS_INTTYPES_H_
2N/A#define _SYS_INTTYPES_H_
2N/A
2N/A/*
2N/A * 7.8 Format conversion of integer types
2N/A */
2N/A
2N/A#include <sys/stdint.h>
2N/A
2N/A#if !defined(__cplusplus) || defined(__STDC_FORMAT_MACROS)
2N/A#include <machine/int_fmtio.h>
2N/A#endif
2N/A
2N/A#endif /* !_SYS_INTTYPES_H_ */
2N/A