mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
12 lines
307 B
Plaintext
12 lines
307 B
Plaintext
|
--- 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);
|