summary refs log tree commit diff
path: root/strlcat.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2014-06-22 22:50:03 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2014-06-22 22:50:03 +0200
commitc7f481e6fac2cb693144bff45f6180d146bf13a5 (patch)
tree2a5c04fce3a24a471a0d0dbe8e93f82af0fa98a4 /strlcat.c
parenta483e23e944def41b6fac57297d7203309b8f0ec (diff)
downloadcwm-c7f481e6fac2cb693144bff45f6180d146bf13a5.tar.gz
cwm-c7f481e6fac2cb693144bff45f6180d146bf13a5.tar.xz
cwm-c7f481e6fac2cb693144bff45f6180d146bf13a5.zip
Don't use included strlcpy/strlcat when already defined as macros
OS X 10.9 with Fortify has conflicting prototypes:

In file included from calmwm.c:36:
./calmwm.h:28:8: error: conflicting types for '__builtin___strlcat_chk' /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/secure/_string.h:111:3:
note:
      expanded from macro 'strlcat'
  __builtin___strlcat_chk (dest, src, len, __darwin_obsz (dest))
Diffstat (limited to 'strlcat.c')
-rw-r--r--strlcat.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/strlcat.c b/strlcat.c
index 3702ead..6e28e87 100644
--- a/strlcat.c
+++ b/strlcat.c
@@ -18,10 +18,11 @@
 
 /* OPENBSD ORIGINAL: lib/libc/string/strlcat.c */
 
-#ifndef HAVE_STRLCAT
-
 #include <sys/types.h>
 #include <string.h>
+#include "calmwm.h"
+
+#ifndef HAVE_STRLCAT
 
 /*
  * Appends src to string dst of size siz (unlike strncat, siz is the