summaryrefslogtreecommitdiff
path: root/textproc/c2man/files
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/c2man/files')
-rw-r--r--textproc/c2man/files/patch-grammar.y22
-rw-r--r--textproc/c2man/files/patch-lex.l10
2 files changed, 0 insertions, 32 deletions
diff --git a/textproc/c2man/files/patch-grammar.y b/textproc/c2man/files/patch-grammar.y
deleted file mode 100644
index 24aa753d11f9..000000000000
--- a/textproc/c2man/files/patch-grammar.y
+++ /dev/null
@@ -1,22 +0,0 @@
---- grammar.y.orig 1998-09-30 01:29:13 UTC
-+++ grammar.y
-@@ -14,7 +14,7 @@
- %token T_INLINE
-
- /* type specifiers */
--%token T_CHAR T_DOUBLE T_FLOAT T_INT T_VOID
-+%token T_CHAR T_DOUBLE T_FLOAT T_INT T_VOID T_VALIST
- %token T_LONG T_SHORT T_SIGNED T_UNSIGNED
- %token T_ENUM T_STRUCT T_UNION
-
-@@ -374,6 +374,10 @@ type_specifier
- {
- new_decl_spec(&$$, "void", DS_NONE);
- }
-+ | T_VALIST
-+ {
-+ new_decl_spec(&$$, "va_list", DS_NONE);
-+ }
- | struct_or_union_specifier
- | enum_specifier
- | T_TYPEDEF_NAME
diff --git a/textproc/c2man/files/patch-lex.l b/textproc/c2man/files/patch-lex.l
deleted file mode 100644
index 0d4178f7d706..000000000000
--- a/textproc/c2man/files/patch-lex.l
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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;