blob: 0ef09bfc2d442c46be3ddd74a8c472ddb71d82ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
extern int printf(const char *format, ...);
#define ACPI_TYPE_INVALID 0x1E
#define NUM_NS_TYPES ACPI_TYPE_INVALID+1
int array[NUM_NS_TYPES];
#define n 0xe
int main()
{
printf("n+1 = %d\n", n+1);
// printf("n+1 = %d\n", 0xe+1);
}
|