From f338314e2ee4b4202ed368c9448732f5061978ef Mon Sep 17 00:00:00 2001 From: Steve Price Date: Sun, 28 Nov 1999 18:15:18 +0000 Subject: Cope with ANSI C++'isms when gcc 2.95 is the system compiler. --- net/irrtoolset/files/patch-ag | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 net/irrtoolset/files/patch-ag (limited to 'net/irrtoolset/files/patch-ag') diff --git a/net/irrtoolset/files/patch-ag b/net/irrtoolset/files/patch-ag new file mode 100644 index 000000000000..f5519df2a198 --- /dev/null +++ b/net/irrtoolset/files/patch-ag @@ -0,0 +1,11 @@ +--- src/dbase/irr_lexer.y.orig Sat Nov 27 18:22:22 1999 ++++ src/dbase/irr_lexer.y Sat Nov 27 18:22:44 1999 +@@ -73,7 +73,7 @@ + + #include + +-static inline strtoupper(char *c) { ++static inline void strtoupper(char *c) { + for (; *c; c++) + if (isascii(*c) && isalpha(*c)) + *c = toupper(*c); -- cgit v1.2.3