Commit 745bd15f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing #include <errno.h>

parent 346b6cdf
......@@ -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
......
......@@ -26,6 +26,7 @@
#endif
#include <stdarg.h>
#include <assert.h>
#include <errno.h>
#include <vlc_common.h>
#include <vlc_demux.h>
......
......@@ -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>
......
......@@ -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>
......
......@@ -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
......
......@@ -37,6 +37,7 @@
#include <ctype.h>
#include <fcntl.h>
#include <errno.h>
#include "dynamicoverlay.h"
......
......@@ -34,6 +34,7 @@
#include <ctype.h>
#include <limits.h>
#include <assert.h>
#include <errno.h>
#include "input_internal.h"
#include "event.h"
......
......@@ -31,6 +31,7 @@
#include <vlc_common.h>
#include <sys/stat.h>
#include <assert.h>
#include <errno.h>
#include "vlc_block.h"
/**
......
......@@ -35,6 +35,7 @@
#include <assert.h>
#include <unistd.h> /* fsync() */
#include <signal.h>
#include <errno.h>
#include <sched.h>
#ifdef __linux__
......
......@@ -33,6 +33,7 @@
#include "libvlc.h"
#include <assert.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment