mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-27 08:22:31 +00:00
be7ce4110e
This reverts commit e96515433d
.
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();
|
|
}
|