From 6ebb883de86c1e414ca823358a5bc3667351d249 Mon Sep 17 00:00:00 2001 From: Phil Shafer Date: Sun, 26 Apr 2015 17:47:58 -0400 Subject: [PATCH] linux doesn't like __printflike; strange.... --- libxo/xo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libxo/xo.h b/libxo/xo.h index c16cc6d1..c0657403 100644 --- a/libxo/xo.h +++ b/libxo/xo.h @@ -32,7 +32,7 @@ * coward's path, we'll turn it on inside a #if that allows * others to turn it off where needed. Not ideal, but functional. */ -#ifndef NO_PRINTFLIKE +#if !defined(NO_PRINTFLIKE) && !defined(__linux__) #define PRINTFLIKE(_x, _y) __printflike(_x, _y) #else #define PRINTFLIKE(_x, _y)