From: Roland McGrath Date: Thu, 8 Dec 1994 19:45:02 +0000 (+0000) Subject: Rename variable `sp' to avoid conflict with #define in . X-Git-Tag: glibc-2.16-ports-before-merge~4004 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a11dbdebf08a7d0afc1f4e43085b3aeaee07daf9;p=thirdparty%2Fglibc.git Rename variable `sp' to avoid conflict with #define in . --- diff --git a/sysdeps/mach/alpha/sysdep.h b/sysdeps/mach/alpha/sysdep.h index 52efb586ff1..207fb58865d 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; \