From a11dbdebf08a7d0afc1f4e43085b3aeaee07daf9 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 8 Dec 1994 19:45:02 +0000 Subject: [PATCH] Rename variable `sp' to avoid conflict with #define in . --- sysdeps/mach/alpha/sysdep.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/mach/alpha/sysdep.h b/sysdeps/mach/alpha/sysdep.h index 52efb586ff..207fb58865 100644 --- a/sysdeps/mach/alpha/sysdep.h +++ b/sysdeps/mach/alpha/sysdep.h @@ -25,9 +25,9 @@ Cambridge, MA 02139, USA. */ " br $27, 1f\n" /* Load GP from PC. */ "1: ldgp $29, 0($27)\n" " jmp $26, _start0"); /* Jump to _start0; don't return. */ -#define START_ARGS char **sp +#define START_ARGS char **sparg #define SNARF_ARGS(argc, argv, envp) \ - (envp = &(argv = &sp[1])[(argc = *(int *) sp) + 1]) + (envp = &(argv = &sparg[1])[(argc = *(int *) sparg) + 1]) #define CALL_WITH_SP(fn, sp) \ ({ register long int __fn = fn, __sp = (long int) sp; \