]> git.saurik.com Git - bison.git/blobdiff - src/getargs.c
Enable the Java related testsuite tests when the only Java compiler
[bison.git] / src / getargs.c
index 4ff38fb188594e2ce0373bf6f5dd98c89fe5ccbe..0938c6980b732ddae3e11dc6c4eed853d1544235 100644 (file)
@@ -25,7 +25,6 @@
 #include "revision.h"
 
 #include <argmatch.h>
-#include <c-strcase.h>
 #include <configmake.h>
 #include <error.h>
 
@@ -367,7 +366,7 @@ language_argmatch (char const *arg, int prio, location const *loc)
     {
       int i;
       for (i = 0; valid_languages[i].language[0]; i++)
-       if (c_strcasecmp (arg, valid_languages[i].language) == 0)
+       if (strcasecmp (arg, valid_languages[i].language) == 0)
          {
            language_prio = prio;
            language = &valid_languages[i];