]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
HEAD build failure reparation. [ISC-Bugs #17115]
authorDavid Hankins <dhankins@isc.org>
Wed, 29 Aug 2007 18:09:35 +0000 (18:09 +0000)
committerDavid Hankins <dhankins@isc.org>
Wed, 29 Aug 2007 18:09:35 +0000 (18:09 +0000)
common/conflex.c

index 84c65ecd96274280afa44ff18f7574b4d247ff53..dc8ebc298d0dc58bd52e1fbba84ac3a0ce63d24b 100644 (file)
@@ -36,6 +36,7 @@
 #include <ctype.h>
 
 static int get_char PROTO ((struct parse *));
+static void unget_char(struct parse *, int);
 static void skip_to_eol PROTO ((struct parse *));
 static enum dhcp_token read_whitespace(int c, struct parse *cfile);
 static enum dhcp_token read_string PROTO ((struct parse *));
@@ -203,7 +204,7 @@ static int get_char (cfile)
 /*
  * Return a character to our input buffer.
  */
-static int 
+static void
 unget_char(struct parse *cfile, int c) {
        if (c != EOF) {
                cfile->bufix--;