commit dd4b23c9179c7f44143d609b7023954311612923
parent 2c4c47f973f7ad94c6fab54e08cbfd06377225f2
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Thu, 22 Dec 2011 01:44:38 +0100
surpressing GCC warnings on non Mac-platforms
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/ansilove/strtolower.c b/ansilove/strtolower.c
@@ -9,7 +9,11 @@
// See the file LICENSE for details.
//
+#if defined(__APPLE__) && defined(__MACH__)
#import "strtolower.h"
+#else
+#include "strtolower.h"
+#endif
void strtolower(char str[])
{