summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2008-06-16 19:37:56 +0000
committerJay Freeman <saurik@saurik.com>2008-06-16 19:37:56 +0000
commitcc5f9882aa93d30ad944b390a4a20bf21478ef42 (patch)
tree54b0516c8ed9ac88d2a4443e58c58b727af66ddf /util
parent34f9f9ce26c7e0dd25c7cddc6252c21e5d5577fa (diff)
Added a #define for a DYLIB_STUB, not that I need to use it, apparently.
git-svn-id: http://svn.telesphoreo.org/trunk@316 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'util')
-rw-r--r--util/ldid.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/util/ldid.cpp b/util/ldid.cpp
index dc1902e54..107cbaecd 100644
--- a/util/ldid.cpp
+++ b/util/ldid.cpp
@@ -77,9 +77,10 @@ struct mach_header {
#define MH_MAGIC 0xfeedface
#define MH_CIGAM 0xcefaedfe
-#define MH_EXECUTE 0x2
-#define MH_DYLIB 0x6
-#define MH_BUNDLE 0x8
+#define MH_EXECUTE 0x2
+#define MH_DYLIB 0x6
+#define MH_BUNDLE 0x8
+#define MH_DYLIB_STUB 0x9
struct load_command {
uint32_t cmd;