diff options
author | John C. Vernaleo <jcv@conformal.com> | 2014-03-22 18:42:25 -0400 |
---|---|---|
committer | John C. Vernaleo <jcv@conformal.com> | 2014-03-22 18:42:25 -0400 |
commit | a22f3fc998ad3969f9f879c0bb272dff0e51479e (patch) | |
tree | 01bdba1de5e09b39236a8950790972d1694da152 | |
parent | c0e848e3332f9aacbe4ebf56ebd50d29f89cefbf (diff) | |
download | xombrero-a22f3fc998ad3969f9f879c0bb272dff0e51479e.tar.gz |
Remove some osx specific lines from linux dir.
osx now has its own copies of files like util.h so osx specific changes no longer needed here and apparently it gives some trouble on certain odd (i.e., non-debian or redhat) linux systems. Closes #53
-rw-r--r-- | linux/util.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/linux/util.h b/linux/util.h index 50d98ff..cce1453 100644 --- a/linux/util.h +++ b/linux/util.h @@ -20,12 +20,8 @@ #define FPARSELN_UNESCREST 0x08 #define FPARSELN_UNESCALL 0x0f -#if !__has_builtin(strlcpy) size_t strlcpy(char *, const char *, size_t); -#endif -#if !__has_builtin(strlcat) size_t strlcat(char *, const char *, size_t); -#endif char *fgetln(FILE *, size_t *); char *fparseln(FILE *, size_t *, size_t *, const char [3], int); |