diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-03-17 14:55:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-03-17 14:55:33 +0000 |
commit | 640666fb36d7465b188f9d0bedc83ad60b83a1d7 (patch) | |
tree | 7de61b3ea478290eb8c7a935e3b4ed9e575372bc /compat/strcasestr.c | |
parent | 1ea19245b37cbaa869d8601f652c4055ad537f34 (diff) | |
download | rtmux-640666fb36d7465b188f9d0bedc83ad60b83a1d7.tar.gz rtmux-640666fb36d7465b188f9d0bedc83ad60b83a1d7.tar.bz2 rtmux-640666fb36d7465b188f9d0bedc83ad60b83a1d7.zip |
Fix some warnings.
Diffstat (limited to 'compat/strcasestr.c')
-rw-r--r-- | compat/strcasestr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/strcasestr.c b/compat/strcasestr.c index aa74c017..8679cf88 100644 --- a/compat/strcasestr.c +++ b/compat/strcasestr.c @@ -36,6 +36,8 @@ #include <ctype.h> #include <string.h> +#include "compat.h" + /* * Find the first occurrence of find in s, ignore case. */ |