summaryrefslogtreecommitdiff
path: root/float.h
diff options
context:
space:
mode:
authorKeith Kanios <spook@dynatos.net>2007-04-13 16:47:53 +0000
committerKeith Kanios <spook@dynatos.net>2007-04-13 16:47:53 +0000
commita6dfa78b7805673b2b4955a9f34e21825730f79d (patch)
treee92c44a08121248c0789b63d41908b402fcb891e /float.h
parent2cc61b34f0bc87010a649159f62d37d5ed529ee4 (diff)
downloadnasm-a6dfa78b7805673b2b4955a9f34e21825730f79d.tar.gz
Fixed distinction between char and int8_t data types.
Diffstat (limited to 'float.h')
-rw-r--r--float.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/float.h b/float.h
index bd4a75a6..769cc1ec 100644
--- a/float.h
+++ b/float.h
@@ -10,7 +10,7 @@
#ifndef NASM_FLOAT_H
#define NASM_FLOAT_H
-int float_const(int8_t *number, int32_t sign, uint8_t *result, int bytes,
+int float_const(char *number, int32_t sign, uint8_t *result, int bytes,
efunc error);
#endif