Bugzilla bug 103881: restored the protection for the redefinition of

macro '__const'.  <sys/stdsyms.h> on HP-UX 11.00 defines '__const'.
This commit is contained in:
wtc%netscape.com 2001-10-12 01:32:28 +00:00
Родитель d20d8d8805
Коммит 4ef00fb191
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -97,7 +97,10 @@
#define __CONCAT(x,y) x ## y
#define __STRING(x) #x
/* On HP-UX 11.00, <sys/stdsyms.h> defines __const. */
#ifndef __const
#define __const const /* define reserved names to standard */
#endif /* __const */
#define __signed signed
#define __volatile volatile
#ifndef _WINDOWS