From: Dave Love Date: Thu, 14 Nov 2002 14:14:01 +0000 (+0000) Subject: (main) [!VMS]: Avoid third arg. X-Git-Tag: ttn-vms-21-2-B4~12456 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3861bdcd9ef21f5eee7f641148ff006ba8c023b7;p=emacs.git (main) [!VMS]: Avoid third arg. --- diff --git a/src/emacs.c b/src/emacs.c index 83bec92263e..7bbaac8f923 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -762,10 +762,16 @@ bug_reporting_address () /* ARGSUSED */ int -main (argc, argv, envp) +main (argc, argv +#ifdef VMS +, envp +#endif +) int argc; char **argv; +#ifdef VMS char **envp; +#endif { #if GC_MARK_STACK Lisp_Object dummy;