vo_opengl_old: add missing include statement

<ctype.h> is needed at least for isalnum(). Most time this worked,
because some ffmpeg or Libav versions recursively include this header
from libavutil/common.h. Fix it so it always works.
This commit is contained in:
wm4 2013-01-15 21:16:10 +01:00
parent 32d2e958a8
commit efcd479e7e
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#include <string.h>
#include <math.h>
#include <stdbool.h>
#include <ctype.h>
#include <assert.h>
#include "config.h"