blob: 72938e3b959d0e2d6217b3910c327570606815af (
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
|
rl-header.dpatch by <doko@debian.org>
Include stdio.h in readline.h and history.h
Index: b/history.h
===================================================================
--- a/history.h 2010-04-10 12:05:07.792336522 +0000
+++ b/history.h 2010-04-10 12:12:39.462336737 +0000
@@ -32,6 +32,7 @@
# include "rlstdc.h"
# include "rltypedefs.h"
#else
+# include <stdio.h>
# include <readline/rlstdc.h>
# include <readline/rltypedefs.h>
#endif
Index: b/readline.h
===================================================================
--- a/readline.h 2010-04-10 12:12:39.302337290 +0000
+++ b/readline.h 2010-04-10 12:12:39.462336737 +0000
@@ -32,6 +32,7 @@
# include "keymaps.h"
# include "tilde.h"
#else
+# include <stdio.h>
# include <readline/rlstdc.h>
# include <readline/rltypedefs.h>
# include <readline/keymaps.h>
|