diff options
Diffstat (limited to 'net-mgmt/irrtoolset/files/patch-ae')
-rw-r--r-- | net-mgmt/irrtoolset/files/patch-ae | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-mgmt/irrtoolset/files/patch-ae b/net-mgmt/irrtoolset/files/patch-ae new file mode 100644 index 000000000000..8c3005236be0 --- /dev/null +++ b/net-mgmt/irrtoolset/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); |