- Get rid of GCC specific typecasts to PVOID for pointer arithmetics
[reactos.git] / reactos / include / elf.h
1 #ifndef _REACTOS_ELF_H_
2 #define _REACTOS_ELF_H_ 1
3
4 /* Machine-independent and word-size-independent definitions */
5 #include <elf/common.h>
6
7 /*
8 * Word-size-dependent definitions. All ReactOS builds support all of them,
9 * even if (obviously) code for the wrong architecture cannot be executed - the
10 * files can still be used in machine-independent ways, e.g. as resource DLLs
11 */
12 #include <elf/elf32.h>
13 #include <elf/elf64.h>
14
15 /* Machine-dependent definitions */
16 #include <elf/machine.h>
17
18 #endif
19
20 /* EOF */