svn commit: r228552 - head/lib/libipsec
Dimitry Andric
dim at FreeBSD.org
Thu Dec 15 23:22:25 UTC 2011
Author: dim
Date: Thu Dec 15 23:22:24 2011
New Revision: 228552
URL: http://svn.freebsd.org/changeset/base/228552
Log:
Define YY_NO_INPUT in lib/libipsec/policy_token.l, so lex's input()
function does not get defined needlessly.
MFC after: 1 week
Modified:
head/lib/libipsec/policy_token.l
Modified: head/lib/libipsec/policy_token.l
==============================================================================
--- head/lib/libipsec/policy_token.l Thu Dec 15 23:13:57 2011 (r228551)
+++ head/lib/libipsec/policy_token.l Thu Dec 15 23:22:24 2011 (r228552)
@@ -48,6 +48,7 @@
#include "y.tab.h"
#define yylval __libipsecyylval /* XXX */
+#define YY_NO_INPUT
int yylex(void);
%}
More information about the svn-src-head
mailing list