summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-05-16 12:44:12 +0200
committerwm4 <wm4@nowhere>2016-05-16 12:44:12 +0200
commit0c40eee47940595308d704f9755f653627b20cbd (patch)
tree54800b6113b837731301d1f825ba399711e6948c
parentdd99c1e3b4c32c6e6550db55192362a4d69414f0 (diff)
downloadmpv-0c40eee47940595308d704f9755f653627b20cbd.tar.bz2
mpv-0c40eee47940595308d704f9755f653627b20cbd.tar.xz
vo_opengl: use proper include statement
-rw-r--r--video/out/opengl/user_shaders.c3
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])
{