Renamed build.tests to build.test1
[fw/openocd] / testing / build.test1 / mingw32_help / include / elf.h
1 /* elf.h
2
3   Copyright 2005 Red Hat, Inc.
4
5 This file is part of Cygwin.
6
7 This software is a copyrighted work licensed under the terms of the
8 Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
9 details. */
10
11 #ifndef _ELF_H_
12 #define _ELF_H_
13
14 #include <stdint.h>
15
16 typedef signed char int8_t;
17 typedef unsigned char u_int8_t;
18 typedef short int16_t;
19 typedef unsigned short u_int16_t;
20 typedef int int32_t;
21 typedef unsigned int u_int32_t;
22 typedef long long int64_t;
23 typedef unsigned long long u_int64_t;
24 typedef int32_t register_t;
25
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 #include <sys/types.h>
31 #include <sys/elf32.h>
32 #include <sys/elf64.h>
33 #include <sys/elf_generic.h>
34 #ifdef __cplusplus
35 }
36 #endif
37
38 #endif /*_ELF_H_*/