mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 22:38:01 +00:00
23 lines
361 B
C
23 lines
361 B
C
#include <ccan/compiler/compiler.h>
|
|
|
|
static void PRINTF_FMT(2,3) my_printf(int x, const char *fmt, ...)
|
|
{
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
unsigned int i = 0;
|
|
|
|
my_printf(1, "Not a pointer "
|
|
#ifdef FAIL
|
|
"%p",
|
|
#if !HAVE_ATTRIBUTE_PRINTF
|
|
#error "Unfortunately we don't fail if !HAVE_ATTRIBUTE_PRINTF."
|
|
#endif
|
|
#else
|
|
"%i",
|
|
#endif
|
|
i);
|
|
return 0;
|
|
}
|