diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-02 01:10:46 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-02 01:10:46 +0000 |
commit | 6bcbb818344dde98e651269a9c761f5e50770e0e (patch) | |
tree | 3d7bf99ce2e939e4f1d494b2b92bd65c83a2736b /src | |
parent | e903c1de7f44c33e08bb5777680ba560966fcc34 (diff) | |
download | xine-lib-6bcbb818344dde98e651269a9c761f5e50770e0e.tar.gz xine-lib-6bcbb818344dde98e651269a9c761f5e50770e0e.tar.bz2 |
Avoid implicit declaration of close() function.
CVS patchset: 8190
CVS date: 2006/09/02 01:10:46
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_syncfb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c index 6d28b58f2..9760105c2 100644 --- a/src/video_out/video_out_syncfb.c +++ b/src/video_out/video_out_syncfb.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_syncfb.c,v 1.106 2006/09/02 01:08:31 dgp85 Exp $ + * $Id: video_out_syncfb.c,v 1.107 2006/09/02 01:10:46 dgp85 Exp $ * * video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine * @@ -46,6 +46,7 @@ #include <sys/mman.h> #include <math.h> #include <fcntl.h> +#include <unistd.h> #include <X11/Xlib.h> #include <X11/Xutil.h> |