aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornalin <nalin@517b70f8-ed25-0410-8bf6-f5db08f7b76e>2005-11-02 23:11:08 +0000
committernalin <nalin@517b70f8-ed25-0410-8bf6-f5db08f7b76e>2005-11-02 23:11:08 +0000
commitb74a955cdf6800aae538fef69b8ebb3e2e61b0d0 (patch)
tree660a73fa5d93bebfd1db51be40192154bf290184
parentdad3cb195802282569999bface564bbc5d22a0f1 (diff)
* etpo/lexer.l,etpo/grammar.y: silence a couple of compiler warnings about
implicitly-declared functions. git-svn-id: http://svn.gnome.org/svn/krb5-auth-dialog/trunk@42 517b70f8-ed25-0410-8bf6-f5db08f7b76e
-rw-r--r--ChangeLog7
-rw-r--r--etpo/grammar.y2
-rw-r--r--etpo/lexer.l1
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5fec10d..26ede3a 100644
--- 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.
diff --git a/etpo/grammar.y b/etpo/grammar.y
index db1ac4b..8350b6b 100644
--- a/etpo/grammar.y
+++ b/etpo/grammar.y
@@ -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;
%}
diff --git a/etpo/lexer.l b/etpo/lexer.l
index ad86889..9b5fee7 100644
--- a/etpo/lexer.l
+++ b/etpo/lexer.l
@@ -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>