mirror of https://github.com/getdnsapi/getdns.git
14 lines
146 B
C
14 lines
146 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void f (char *u __attribute__((unused)));
|
||
|
|
||
|
void f(char *u)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int main (int ac, char *av[])
|
||
|
{
|
||
|
f("str");
|
||
|
return 0;
|
||
|
}
|