Missing #include <errno.h>

This commit is contained in:
Rémi Denis-Courmont 2009-09-12 13:44:31 +03:00
parent 346b6cdff9
commit 745bd15ffe
10 changed files with 11 additions and 0 deletions

View File

@ -23,6 +23,8 @@
* This file implements gcrypt support functions in vlc
*/
#include <errno.h>
#ifdef LIBVLC_USE_PTHREAD
/**
* If possible, use gcrypt-provided thread implementation. This is so that

View File

@ -26,6 +26,7 @@
#endif
#include <stdarg.h>
#include <assert.h>
#include <errno.h>
#include <vlc_common.h>
#include <vlc_demux.h>

View File

@ -44,6 +44,7 @@
#include <vlc_input.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>

View File

@ -28,6 +28,7 @@
#include <vlc_interface.h>
#include <vlc_keys.h>
#include <ctype.h>
#include <errno.h>
#include <xcb/xcb.h>
#include <xcb/xcb_keysyms.h>

View File

@ -28,6 +28,7 @@
#include <vlc_network.h>
#include <assert.h>
#include <unistd.h>
#include <errno.h>
#ifndef _POSIX_SPAWN
# define _POSIX_SPAWN (-1)
#endif

View File

@ -37,6 +37,7 @@
#include <ctype.h>
#include <fcntl.h>
#include <errno.h>
#include "dynamicoverlay.h"

View File

@ -34,6 +34,7 @@
#include <ctype.h>
#include <limits.h>
#include <assert.h>
#include <errno.h>
#include "input_internal.h"
#include "event.h"

View File

@ -31,6 +31,7 @@
#include <vlc_common.h>
#include <sys/stat.h>
#include <assert.h>
#include <errno.h>
#include "vlc_block.h"
/**

View File

@ -35,6 +35,7 @@
#include <assert.h>
#include <unistd.h> /* fsync() */
#include <signal.h>
#include <errno.h>
#include <sched.h>
#ifdef __linux__

View File

@ -33,6 +33,7 @@
#include "libvlc.h"
#include <assert.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif