mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-03 19:13:43 +02:00
10 lines
116 B
C++
10 lines
116 B
C++
// Test for gcc-style "pure" attribute.
|
|
int __attribute__((pure)) f()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
return f();
|
|
}
|