mirror of https://github.com/GOSTSec/sgminer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
361 B
22 lines
361 B
#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; |
|
}
|
|
|