summaryrefslogtreecommitdiff
blob: edfb38d68b7bed51dcd4b2d8e2f719d60180bf5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--- linux-atm/src/maint/hediag.c.orig
+++ linux-atm/src/maint/hediag.c
@@ -1,5 +1,6 @@
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
 #include <sys/ioctl.h>
 #include <sys/types.h>
--- linux-atm/src/qgen/ql_y.y
+++ linux-atm/src/qgen/ql_y.y
@@ -17,6 +17,8 @@
 static STRUCTURE *structures = NULL;
 static const char *abort_id; /* indicates abort flag */
 
+void yyerror(const char *s);
+int yylex ( void );
 
 static NAME_LIST *get_name_list(const char *name)
 {
--- linux-atm/src/test/ispl_y.y
+++ linux-atm/src/test/ispl_y.y
@@ -16,6 +16,7 @@
 
 static struct atmsvc_msg msg;
 
+int yylex ( void );
 
 %}