Fix missing ctype.h includes

libavutil/common.h stopped including ctype.h, and some source files were
relying on recursive inclusion of this header.
This commit is contained in:
wm4 2013-03-04 23:13:12 +01:00
parent 39824c071e
commit 4949992264
2 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <stdbool.h>
#include <ctype.h>
#include "core/mp_msg.h"
#include "subassconvert.h"

View File

@ -26,6 +26,7 @@
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <ctype.h>
#include "config.h"
#include "core/mp_msg.h"