annotate config.h.bot @ 2428:6979248bf0d3
[project @ 1996-10-25 06:26:19 by jwe]
author |
jwe |
date |
Fri, 25 Oct 1996 06:27:38 +0000 |
parents |
6bea009cdae2 |
children |
6577af9f7504 |
rev |
line source |
1426
|
1 |
|
2 #if defined __GNUC__ |
|
3 #define NORETURN __attribute__ ((__noreturn__)) |
2428
|
4 #define GCC_ATTRIBUTE_UNUSED __attribute__ ((__unused__)) |
1426
|
5 #else |
|
6 #define NORETURN |
2428
|
7 #define GCC_ATTRIBUTE_UNUSED |
1426
|
8 #endif |
2005
|
9 |
2378
|
10 #define STATIC_CAST(T, E) (T) (E) |
|
11 |
|
12 #define DYNAMIC_CAST(T, E) (T) (E) |
|
13 |
|
14 #define REINTERPRET_CAST(T, E) (T) (E) |
|
15 |
2005
|
16 #define HEAVYWEIGHT_INDEXING 1 |