diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-06-14 09:33:16 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-06-15 08:09:36 -0700 |
commit | 5aaec3c7a583354a07ec765327fd0edd6216981f (patch) | |
tree | ec16c230c0b075c5f4ea6aa67387d51f7dd59f69 /Xalloca.h | |
parent | 5bad478221c54c0dbf682ef2569f6ca5ac050049 (diff) |
Drop support for SunOS 4 and Solaris releases older than 2.5 (1995)
Includes changing remaining sun ifdef's to check for standard-conformant /
non-namespace-polluting #ifdef __sun instead of older #ifdef sun.
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'Xalloca.h')
-rw-r--r-- | Xalloca.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ from The Open Group. * Test is easy, the new one is named __builtin_alloca and comes * from alloca.h which #defines alloca. */ -# if defined(sun) || defined(alloca) +# if defined(__sun) || defined(alloca) /* * Some System V boxes extract alloca.o from /lib/libPW.a; if you * decide that you don't want to use alloca, you might want to fix it here. |