summaryrefslogtreecommitdiff
path: root/disasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'disasm.h')
-rw-r--r--disasm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/disasm.h b/disasm.h
index 70a9a7bb..fa6e2e2f 100644
--- a/disasm.h
+++ b/disasm.h
@@ -38,10 +38,12 @@
#ifndef NASM_DISASM_H
#define NASM_DISASM_H
+#include "iflag.h"
+
#define INSN_MAX 32 /* one instruction can't be longer than this */
int32_t disasm(uint8_t *data, char *output, int outbufsize, int segsize,
- int32_t offset, int autosync, iflags_t prefer);
+ int32_t offset, int autosync, iflag_t *prefer);
int32_t eatbyte(uint8_t *data, char *output, int outbufsize, int segsize);
#endif