diff options
author | Steve Price <steve@FreeBSD.org> | 1999-11-28 18:15:18 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-11-28 18:15:18 +0000 |
commit | f338314e2ee4b4202ed368c9448732f5061978ef (patch) | |
tree | 0ff622e77d3e2c75af2b265aa4fd82f9a5b88a03 /net/irrtoolset/files/patch-ag | |
parent | Update to Tcl/Tk version 8.2. (diff) |
Cope with ANSI C++'isms when gcc 2.95 is the system compiler.
Notes
Notes:
svn path=/head/; revision=23471
Diffstat (limited to 'net/irrtoolset/files/patch-ag')
-rw-r--r-- | net/irrtoolset/files/patch-ag | 11 |
1 files changed, 11 insertions, 0 deletions
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 <cctype> + +-static inline strtoupper(char *c) { ++static inline void strtoupper(char *c) { + for (; *c; c++) + if (isascii(*c) && isalpha(*c)) + *c = toupper(*c); |