Mercurial > emacs
changeset 48319:e140ab04c876
(main) [!VMS]: Avoid third arg.
author | Dave Love <fx@gnu.org> |
---|---|
date | Thu, 14 Nov 2002 14:14:01 +0000 |
parents | 5c1be14cbcac |
children | de5246a3655a |
files | src/emacs.c |
diffstat | 1 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/emacs.c Thu Nov 14 14:13:36 2002 +0000 +++ b/src/emacs.c Thu Nov 14 14:14:01 2002 +0000 @@ -762,10 +762,16 @@ /* 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;