include: demolish _LONGLONG_TYPE; consider "long long" always valid
[unleashed.git] / include / sys / elftypes.h
blobd731e68957dfb4f505651ddd6adb702f8a900661
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
22 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
23 /* All Rights Reserved */
27 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
28 * Use is subject to license terms.
31 #ifndef _SYS_ELFTYPES_H
32 #define _SYS_ELFTYPES_H
34 #include <stdint.h>
36 typedef uint32_t Elf32_Addr;
37 typedef uint16_t Elf32_Half;
38 typedef uint32_t Elf32_Off;
39 typedef int32_t Elf32_Sword;
40 typedef uint32_t Elf32_Word;
42 typedef uint64_t Elf64_Addr;
43 typedef uint16_t Elf64_Half;
44 typedef uint64_t Elf64_Off;
45 typedef int32_t Elf64_Sword;
46 typedef int64_t Elf64_Sxword;
47 typedef uint32_t Elf64_Word;
48 typedef uint64_t Elf64_Xword;
49 typedef uint64_t Elf64_Lword;
50 typedef uint64_t Elf32_Lword;
52 #endif /* _SYS_ELFTYPES_H */