summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-07 20:38:21 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-07 20:38:21 +0000
commit88b35a6dc6bb2eabd25cd99117a85319748f3656 (patch)
treec5c6c8aa757a0c5f7539b78b37607f3146a339b8 /osdep
parentc5001347c2fb0009bef001bec95ecd49e96be4e0 (diff)
downloadmpv-88b35a6dc6bb2eabd25cd99117a85319748f3656.tar.bz2
mpv-88b35a6dc6bb2eabd25cd99117a85319748f3656.tar.xz
Add missing header #includes to fix 'make checkheaders'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26196 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep')
-rw-r--r--osdep/glob.h1
-rw-r--r--osdep/mmap.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/osdep/glob.h b/osdep/glob.h
index 6f6599ed7f..64d618d0dd 100644
--- a/osdep/glob.h
+++ b/osdep/glob.h
@@ -1,6 +1,7 @@
#ifndef MPLAYER_GLOB_H
#define MPLAYER_GLOB_H
+#include <sys/types.h>
#include "config.h"
typedef struct {
diff --git a/osdep/mmap.h b/osdep/mmap.h
index 8a4ccc0abf..db7c136a96 100644
--- a/osdep/mmap.h
+++ b/osdep/mmap.h
@@ -23,6 +23,8 @@
#ifndef MPLAYER_MMAP_H
#define MPLAYER_MMAP_H
+#include <sys/types.h>
+
/*
* Protections are chosen from these bits, or-ed together
*/