patch 7.4.1213
Problem: Using old style function declarations.
Solution: Change to new style function declarations. (script by Hirohito
Higashi)
diff --git a/src/os_vms.c b/src/os_vms.c
index 30d29b9..07b8ca0 100644
--- a/src/os_vms.c
+++ b/src/os_vms.c
@@ -723,10 +723,10 @@
* "msec" == -1 will block until a character is available.
*/
int
-RealWaitForChar(fd, msec, check_for_gpm)
- int fd UNUSED; /* always read from iochan */
- long msec;
- int *check_for_gpm UNUSED;
+RealWaitForChar(
+ int fd UNUSED, /* always read from iochan */
+ long msec,
+ int *check_for_gpm UNUSED)
{
int status;
struct _generic_64 time_curr;