ecb2d88791
* hosts/solaris.h: If not __GNUC__, define const as empty.
15 lines
200 B
C
15 lines
200 B
C
/* Solaris-2 host system */
|
|
|
|
#include "hosts/sysv4.h"
|
|
|
|
#ifndef __GNUC__
|
|
#include <alloca.h>
|
|
#endif
|
|
|
|
#ifndef __GNUC__
|
|
# get around a bug in the Sun C compiler
|
|
#define const
|
|
#endif
|
|
|
|
/* That's all... */
|