Add missing C header for `tolower`.
Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/77ce7462 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/77ce7462 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/77ce7462 Branch: refs/heads/master Commit: 77ce74620a785d534b63a3ca890336009e79ac05 Parents: a158003 Author: Marvin Humphrey <[email protected]> Authored: Thu Feb 25 14:18:47 2016 -0800 Committer: Marvin Humphrey <[email protected]> Committed: Thu Feb 25 14:18:47 2016 -0800 ---------------------------------------------------------------------- runtime/core/Clownfish/Method.c | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/77ce7462/runtime/core/Clownfish/Method.c ---------------------------------------------------------------------- diff --git a/runtime/core/Clownfish/Method.c b/runtime/core/Clownfish/Method.c index 6bf1508..a044f35 100644 --- a/runtime/core/Clownfish/Method.c +++ b/runtime/core/Clownfish/Method.c @@ -14,6 +14,8 @@ * limitations under the License. */ +#include <ctype.h> + #define C_CFISH_METHOD #define CFISH_USE_SHORT_NAMES
