diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-07-18 18:31:41 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-07-18 18:43:58 -0700 |
commit | 605f5155eeedea126c4fe4f2387e7a3da0fc3063 (patch) | |
tree | 9d747371d33bc82c51ec76fe63dc370dd7e9ffe5 /nasm.h | |
parent | ab6443969a57014b4261f1b8a2b9c2ab1224e149 (diff) | |
download | nasm-605f5155eeedea126c4fe4f2387e7a3da0fc3063.tar.gz nasm-605f5155eeedea126c4fe4f2387e7a3da0fc3063.tar.bz2 nasm-605f5155eeedea126c4fe4f2387e7a3da0fc3063.zip |
Drop the ofmt and errfunc arguments to label definition functions
We never set ofmt and errfunc to anything but the global values.
Dropping them from the label definition function command line
simplifies the code.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'nasm.h')
-rw-r--r-- | nasm.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -123,11 +123,9 @@ typedef bool (*lfunc) (char *label, int32_t *segment, int64_t *offset); * an EQU or a segment-base symbol, which shouldn't. */ typedef void (*ldfunc)(char *label, int32_t segment, int64_t offset, - char *special, bool is_norm, bool isextrn, - struct ofmt * ofmt, efunc error); + char *special, bool is_norm, bool isextrn); void define_label(char *label, int32_t segment, int64_t offset, - char *special, bool is_norm, bool isextrn, - struct ofmt * ofmt, efunc error); + char *special, bool is_norm, bool isextrn); /* * List-file generators should look like this: |