mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 12:50:10 +01:00
9 lines
175 B
C
9 lines
175 B
C
__attribute__((__warn_unused_result__)) void f (void) {}
|
|
__attribute__((__warn_unused_result__)) int g;
|
|
|
|
int main(int c, char **v)
|
|
{
|
|
(void)c;
|
|
(void)v;
|
|
return 0;
|
|
}
|