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