diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-07-28 10:18:48 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-07-28 18:00:18 +0400 |
commit | d143f4f39c9f1e887c0b96e1f5b6a8269ee7f4ec (patch) | |
tree | 058723edd0e881704d7d21abf7b3928c445332db /labels.h | |
parent | d3034cb13b8c37fd20f8af5c9c5838ccada3104f (diff) | |
download | nasm-d143f4f39c9f1e887c0b96e1f5b6a8269ee7f4ec.tar.gz nasm-d143f4f39c9f1e887c0b96e1f5b6a8269ee7f4ec.tar.bz2 nasm-d143f4f39c9f1e887c0b96e1f5b6a8269ee7f4ec.zip |
labels.c: cleanup
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'labels.h')
-rw-r--r-- | labels.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ extern char lpostfix[PREFIX_MAX]; bool lookup_label(char *label, int32_t *segment, int64_t *offset); bool is_extern(char *label); void define_label(char *label, int32_t segment, int64_t offset, char *special, - bool is_norm, bool isextrn); + bool is_norm, bool isextrn); void redefine_label(char *label, int32_t segment, int64_t offset, char *special, bool is_norm, bool isextrn); void define_common(char *label, int32_t segment, int32_t size, char *special); |