diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-01-16 20:20:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:54 -0500 |
commit | 7b0f375a86a593004acc768b48fd3881ec46fa6a (patch) | |
tree | b664f6757937664a5914ed3e39bc9cb7372020a6 /source4/include/includes.h | |
parent | 79f32d794ab65f8cde07779771d660589edb156a (diff) | |
download | samba-7b0f375a86a593004acc768b48fd3881ec46fa6a.tar.gz samba-7b0f375a86a593004acc768b48fd3881ec46fa6a.tar.bz2 samba-7b0f375a86a593004acc768b48fd3881ec46fa6a.zip |
r4780: tolower() requires ctype.h
(This used to be commit e22bfa8ae295db009158292b87fe389afa13717e)
Diffstat (limited to 'source4/include/includes.h')
-rw-r--r-- | source4/include/includes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index cc03607e91..b6f49ed827 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -53,6 +53,10 @@ #include <stddef.h> #include <sys/time.h> +#ifdef HAVE_CTYPE_H +#include <ctype.h> +#endif + #ifdef HAVE_STDINT_H #include <stdint.h> #endif |