10 lines
125 B
Plaintext
10 lines
125 B
Plaintext
|
/* $FreeBSD$ */
|
||
|
/* See r303599 */
|
||
|
#if defined(__i386__)
|
||
|
int a;
|
||
|
#elif defined(__amd64__)
|
||
|
int b;
|
||
|
#else
|
||
|
#error "Port me"
|
||
|
#endif
|