X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=riscasm.c;h=0b09bf18ba3c641fa15189cf70cdd32d2c6d439b;hp=d595ebc96257f275a907febb33e63b9cebcf81d5;hb=66b362fa203d0850e8dce8045adb454e354c22ce;hpb=33bb2746fadd3501eccf6b1046cf8acdfb0f1e37 diff --git a/riscasm.c b/riscasm.c index d595ebc..0b09bf1 100644 --- a/riscasm.c +++ b/riscasm.c @@ -13,6 +13,7 @@ #include "expr.h" #include "mark.h" #include "procln.h" +#include "rmac.h" #include "sect.h" #include "token.h" @@ -134,16 +135,6 @@ static const char * malformErr[] = { }; -// -// Convert a string to uppercase -// -static void strtoupper(char * s) -{ - while (*s) - *s++ &= 0xDF; -} - - // // Function to return "malformed expression" error // This is done mainly to remove a bunch of GOTO statements in the parser