From 78acc3e8de2e751ffa4752c8470dae138ec0095b Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sat, 13 Nov 1999 20:34:11 +0000 Subject: [PATCH] (yylex): correct prototype git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7383 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/asn1/parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/asn1/parse.y b/lib/asn1/parse.y index 2f55a4804..3d292ecc2 100644 --- a/lib/asn1/parse.y +++ b/lib/asn1/parse.y @@ -53,7 +53,7 @@ RCSID("$Id$"); static Type *new_type (Typetype t); void yyerror (char *); -int yylex(); +int yylex(void); static void append (Member *l, Member *r);