* etpo/lexer.l,etpo/grammar.y: silence a couple of compiler warnings about
authornalin <nalin@517b70f8-ed25-0410-8bf6-f5db08f7b76e>
Wed, 2 Nov 2005 23:11:08 +0000 (23:11 +0000)
committernalin <nalin@517b70f8-ed25-0410-8bf6-f5db08f7b76e>
Wed, 2 Nov 2005 23:11:08 +0000 (23:11 +0000)
implicitly-declared functions.

git-svn-id: http://svn.gnome.org/svn/krb5-auth-dialog/trunk@42 517b70f8-ed25-0410-8bf6-f5db08f7b76e

ChangeLog
etpo/grammar.y
etpo/lexer.l

index 5fec10d33646e17716030bc9e8b570c2df03d053..26ede3a0e5427f5a413937db208d8ed18aed627e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,12 @@
+2005-11-02  Nalin Dahyabhai <nalin@redhat.com>
+
+       * etpo/lexer.l,etpo/grammar.y: silence a couple of compiler warnings
+       about implicitly-declared functions.
+
 2005-11-02  Nalin Dahyabhai <nalin@redhat.com>
 
        * configure.ac: test for differences between the Heimdal and MIT
-       Kerberos APIs
+       Kerberos APIs.
        * src/krb5-auth-dialog.c: abstract out differences in how credential
        flags and realm names are stored.
 
index db1ac4b3dd8bdd0e1d5f02da113697e44d0931c5..8350b6b9e1f18968fa991969eb289f8f998113f9 100644 (file)
@@ -18,6 +18,8 @@
  */
 #include "config.h"
 #include <glib.h>
+#include <stdio.h>
+#include <string.h>
 static const char *table = "unknown";
 extern const char *currentfile;
 %}
index ad86889022e6d9ce93963c4e54a7c066cd32a2b5..9b5fee7dcc5f586b0b4f8a4df1a7450fdc32fe94 100644 (file)
@@ -24,6 +24,7 @@
 #include <getopt.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <time.h>
 #include <unistd.h>
 #include <glib.h>