blob: d4c2bed15ca85b2a0849f18be2ee4848e459145c [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001Include sys/types.h for u_long definition
2
3Fix errors like
4In file included from src/lex_config.l:34:0:
5src/yacc_config.y:45:5: error: unknown type name 'u_long'
6 u_long num;
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9Upstream-Status: Pending
10Index: pcmciautils-018/src/lex_config.l
11===================================================================
12--- pcmciautils-018.orig/src/lex_config.l
13+++ pcmciautils-018/src/lex_config.l
14@@ -22,6 +22,7 @@
15 #include <unistd.h>
16 #include <string.h>
17 #include <syslog.h>
18+#include <sys/types.h>
19
20 #ifdef HAS_WORDEXP
21 #include <wordexp.h>