blob: d7b585eab7a4a6f2d7a3ace623fa11f0af42afc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Author: Andreas Beckmann <anbe@debian.org>
Description: avoid strings.h collision
--- a/cuneiform_src/Kern/hhh/tigerh/h/strings.h
+++ b/cuneiform_src/Kern/hhh/tigerh/h/strings.h
@@ -75,6 +75,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* *
***************************************************************************/
+#include_next <strings.h>
+#if 0
# ifndef __STRINGS_H_INCLUDE
# define __STRINGS_H_INCLUDE
@@ -154,3 +156,4 @@ extern STRING *pStringsListEnd;
extern STRING *pStringsUpList;
extern STRING *pStringsDownList;
# endif
+#endif
|