mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
10 lines
144 B
C
10 lines
144 B
C
|
/* Used by the test harness to see if toolchain targets Linux. */
|
||
|
#ifdef __linux__
|
||
|
int main()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#else
|
||
|
# error "not linux"
|
||
|
#endif
|