ports/textproc/c2man/files/patch-lex.l
Li-Wen Hsu a11a3cd203 Add c2man, tool to generate documentation from C source code comments
Add with DEPRECATED but without EXPIRATION_DATE because it is not recommended
for use in new projects.  We still add this port because there is needed for
building GNU FriBidi from git snapshot.

PR:		226915
Submitted by:	Ting-Wei Lan <lantw44@gmail.com>
2018-05-06 12:31:02 +00:00

10 lines
347 B
Text

--- lex.l.orig 2000-02-25 01:41:11 UTC
+++ lex.l
@@ -167,6 +167,7 @@ QUOTED ({STRING}|\'(\\\'|[^'\n])*\'|\\.
<INITIAL>float return T_FLOAT;
<INITIAL>int return T_INT;
<INITIAL>void return T_VOID;
+<INITIAL>__builtin_va_list return T_VALIST;
<INITIAL>long return T_LONG;
<INITIAL>short return T_SHORT;
<INITIAL>signed return T_SIGNED;