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/ratoolset/files/patch-ae | |
parent | f01ece64a85ab72cad8ae76755a9e4d625ef683f (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/ratoolset/files/patch-ae')
-rw-r--r-- | net/ratoolset/files/patch-ae | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/ratoolset/files/patch-ae b/net/ratoolset/files/patch-ae new file mode 100644 index 000000000000..8c3005236be0 --- /dev/null +++ b/net/ratoolset/files/patch-ae @@ -0,0 +1,11 @@ +--- src/peval/xx_lexer.y.orig Sat Nov 27 18:18:56 1999 ++++ src/peval/xx_lexer.y Sat Nov 27 18:19:07 1999 +@@ -94,7 +94,7 @@ + NULL, ERROR_TKN + }; + +-static inline strtoupper(char *c) { ++static inline void strtoupper(char *c) { + for (; *c; c++) + if (isascii(*c) && isalpha(*c)) + *c = toupper(*c); |