From 1daa5690c814d19fd62b9a4d58a805c1eef0c370 Mon Sep 17 00:00:00 2001 From: Avril Date: Sat, 5 Dec 2020 13:42:27 +0000 Subject: [PATCH] add markers --- day5/day5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day5/day5.c b/day5/day5.c index 8aa5bbe..9379aa7 100644 --- a/day5/day5.c +++ b/day5/day5.c @@ -12,7 +12,7 @@ #ifdef DEBUG #define dlog(...) fprintf(stderr, "[debug]" __VA_ARGS__) #else -inline static __attribute__((cold)) void do_nothing(int _n, ...) {} +inline extern void do_nothing(int _n, ...) {} #define dlog(...) do { if(0) { do_nothing(0 __VA_OPT__(,) __VA_ARGS__); } } while(0) #endif