diff options
Diffstat (limited to 'utils/libmach/obj.h')
| -rw-r--r-- | utils/libmach/obj.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/libmach/obj.h b/utils/libmach/obj.h new file mode 100644 index 00000000..2d2dfea6 --- /dev/null +++ b/utils/libmach/obj.h @@ -0,0 +1,24 @@ +/* + * obj.h -- defs for dealing with object files + */ + +typedef enum Kind /* variable defs and references in obj */ +{ + aNone, /* we don't care about this prog */ + aName, /* introduces a name */ + aText, /* starts a function */ + aData, /* references to a global object */ +} Kind; + +typedef struct Prog Prog; + +struct Prog /* info from .$O files */ +{ + Kind kind; /* what kind of symbol */ + char type; /* type of the symbol: ie, 'T', 'a', etc. */ + char sym; /* index of symbol's name */ + char *id; /* name for the symbol, if it introduces one */ +}; + +#define UNKNOWN '?' +void _offset(int, long); |
