mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 08:57:26 +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();
|
|
}
|