X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tools%2Fasmproc.c;h=956ffa249245e7c8148a82a3e3d6add8cb037360;hb=3084511901606db82741bffafc8582ab9b7591cc;hp=6e6b62bc9eef560fe26eb971c18ddddab0734fc2;hpb=71d50aa7a431645296bc8624618e02e7f3bf73ac;p=ia32rtools.git diff --git a/tools/asmproc.c b/tools/asmproc.c index 6e6b62b..956ffa2 100644 --- a/tools/asmproc.c +++ b/tools/asmproc.c @@ -12,6 +12,7 @@ #include "my_assert.h" #include "my_str.h" +#include "common.h" struct sl_item { char *name; @@ -109,7 +110,6 @@ const char *sym_use(const struct sl_item *sym, int is_rm) return buf; } -#define IS(w, y) !strcasecmp(w, y) #define IS_OR2(w, x, y) (IS(w, x) || IS(w, y)) #define IS_OR3(w, x, y, z) (IS(w, x) || IS(w, y) || IS(w, z))