mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-15 09:20:10 +00:00
11 lines
116 B
C++
11 lines
116 B
C++
|
// Test for gcc-style "pure" attribute.
|
||
|
int __attribute__((pure)) f()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
return f();
|
||
|
}
|