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