int_types.h revision 4fd606d1f5abe38e1f42c38de1d2e895166bd0f4
2N/A/* $NetBSD: int_types.h,v 1.10 2005/12/24 20:07:10 perry Exp $ */
2N/A
2N/A/*-
2N/A * Copyright (c) 1990 The Regents of the University of California.
2N/A * All rights reserved.
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. Neither the name of the University nor the names of its contributors
2N/A * may be used to endorse or promote products derived from this software
2N/A * without specific prior written permission.
2N/A *
2N/A * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2N/A * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2N/A * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2N/A * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2N/A * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2N/A * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2N/A * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2N/A * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2N/A * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2N/A * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2N/A * SUCH DAMAGE.
2N/A *
2N/A * from: @(#)types.h 7.5 (Berkeley) 3/9/91
2N/A */
2N/A
2N/A#ifndef _ARM_INT_TYPES_H_
2N/A#define _ARM_INT_TYPES_H_
2N/A
2N/A#include <sys/EfiCdefs.h>
2N/A
2N/A/*
2N/A * 7.18.1 Integer types
2N/A */
2N/A
2N/A/* 7.18.1.1 Exact-width integer types */
2N/A
2N/Atypedef INT8 __int8_t;
2N/Atypedef UINT8 __uint8_t;
2N/Atypedef INT16 __int16_t;
2N/Atypedef UINT16 __uint16_t;
2N/Atypedef INT32 __int32_t;
2N/Atypedef UINT32 __uint32_t;
2N/Atypedef INT64 __int64_t;
2N/Atypedef UINT64 __uint64_t;
2N/A
#define __BIT_TYPES_DEFINED__
/* 7.18.1.4 Integer types capable of holding object pointers */
typedef INTN __intptr_t;
typedef UINTN __uintptr_t;
#endif /* !_ARM_INT_TYPES_H_ */