]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Remove gcc warnings.
authorBruno Haible <bruno@clisp.org>
Wed, 24 Oct 2001 09:23:48 +0000 (09:23 +0000)
committerBruno Haible <bruno@clisp.org>
Wed, 24 Oct 2001 09:23:48 +0000 (09:23 +0000)
src/x-java.l

index 833bbc56db4c9a0d6592909a23c78dd3d3132d65..380ad13cf731248362ccc40f483dbe58d628b651 100644 (file)
@@ -21,6 +21,7 @@
 # include <config.h>
 #endif
 
+#include <ctype.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -303,7 +304,7 @@ object_list_alloc ()
   return list;
 }
 
-static void *
+static void
 object_list_destroy (list)
      object_list *list;
 {
@@ -456,7 +457,6 @@ is_keyword (s)
   int num_keywords = get_num_objects (java_keywords);
   java_keyword *kw;
 
-  bool match;
   for (i = 0; i < num_keywords; i++)
     {
       kw = (java_keyword *) get_object (java_keywords, i);