diff options
author | wm4 <wm4@nowhere> | 2016-05-16 12:44:12 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-05-16 12:44:12 +0200 |
commit | 0c40eee47940595308d704f9755f653627b20cbd (patch) | |
tree | 54800b6113b837731301d1f825ba399711e6948c | |
parent | dd99c1e3b4c32c6e6550db55192362a4d69414f0 (diff) |
vo_opengl: use proper include statement
-rw-r--r-- | video/out/opengl/user_shaders.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/video/out/opengl/user_shaders.c b/video/out/opengl/user_shaders.c index 65bac0ad2b..226b9f69f6 100644 --- a/video/out/opengl/user_shaders.c +++ b/video/out/opengl/user_shaders.c @@ -15,8 +15,9 @@ * License along with mpv. If not, see <http://www.gnu.org/licenses/>. */ +#include <ctype.h> + #include "user_shaders.h" -#include "ctype.h" static bool parse_rpn_szexpr(struct bstr line, struct szexp out[MAX_SZEXP_SIZE]) { |