Add missing #include, fixes the warning:
[mplayer/greg.git] / osdep / glob.h
blobd65dca41429cfe9d4ea1ac5724beb5fa6a6b1d78
1 #include "config.h"
3 typedef struct {
4 size_t gl_pathc;
5 char **gl_pathv;
6 size_t gl_offs;
7 } glob_t;
9 void globfree(glob_t *pglob);
11 int glob(const char *pattern, int flags, int (*errfunc)(const char *epath, int eerrno), glob_t *pglob);