blob: 39f296f009612690afc09bd1017deaccc47b3ce1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* $OpenBSD: reloc.h,v 1.2 2001/09/25 07:15:05 art Exp $ */
#ifndef _MACH_RELOC_H_
#define _MACH_RELOC_H_
#define RELOC_NONE 0
#define RELOC_COPY 19
#define RELOC_GLOB_DAT 20
#define RELOC_JMP_SLOT 21
#define RELOC_RELATIVE 22
#define RELOC_64 32
#define RELOC_UA64 54
#endif /* _MACH_RELOC_H_ */
|