diff options
author | oni-link <knil.ino@gmail.com> | 2014-04-01 12:56:51 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-02 18:52:16 -0300 |
commit | e38266a3dd5139f4c70c646e4ac1d926180b9328 (patch) | |
tree | 6248984d57fd72fcaf7cd4f848aeb7c111377e5d | |
parent | ed9a68eea9841ec14f00ff9d35cff7c1858b5a42 (diff) | |
download | rneovim-e38266a3dd5139f4c70c646e4ac1d926180b9328.tar.gz rneovim-e38266a3dd5139f4c70c646e4ac1d926180b9328.tar.bz2 rneovim-e38266a3dd5139f4c70c646e4ac1d926180b9328.zip |
remove HAVE_STDLIB_H
-rw-r--r-- | config/config.h.in | 1 | ||||
-rw-r--r-- | src/os_unix_defs.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/config/config.h.in b/config/config.h.in index 89fb128417..28180301cb 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -60,7 +60,6 @@ #define HAVE_SIGSTACK 1 #define HAVE_SIGVEC 1 #define HAVE_ST_BLKSIZE 1 -#define HAVE_STDLIB_H 1 #define HAVE_STRCASECMP 1 #define HAVE_STRERROR 1 #define HAVE_STRFTIME 1 diff --git a/src/os_unix_defs.h b/src/os_unix_defs.h index 94ff9ffb68..4545ddd77d 100644 --- a/src/os_unix_defs.h +++ b/src/os_unix_defs.h @@ -16,9 +16,7 @@ # include <sys/types.h> # include <sys/stat.h> -#ifdef HAVE_STDLIB_H # include <stdlib.h> -#endif |