- fix missing/incorrect svn file props
[openocd.git] / testing / build.test1 / mingw32_help / include / elf.h
blob23d4aa2d5604bb42b95c0154331e2874dc93f7d8
1 /* elf.h
3 Copyright 2005 Red Hat, Inc.
5 This file is part of Cygwin.
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. */
11 #ifndef _ELF_H_
12 #define _ELF_H_
14 #include <stdint.h>
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;
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
36 #endif
38 #endif /*_ELF_H_*/