summaryrefslogtreecommitdiff
path: root/output/outieee.c
diff options
context:
space:
mode:
Diffstat (limited to 'output/outieee.c')
-rw-r--r--output/outieee.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/output/outieee.c b/output/outieee.c
index 2415bc74..54ac42a4 100644
--- a/output/outieee.c
+++ b/output/outieee.c
@@ -72,7 +72,6 @@
#include <string.h>
#include <time.h>
#include <stdarg.h> /* Note: we need the ANSI version of stdarg.h */
-#include <ctype.h>
#include <inttypes.h>
#include "nasm.h"
@@ -1294,7 +1293,7 @@ static void ieee_unqualified_name(char *dest, char *source)
{
if (ieee_uppercase) {
while (*source)
- *dest++ = toupper(*source++);
+ *dest++ = nasm_toupper(*source++);
*dest = 0;
} else
strcpy(dest, source);