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

Missing #include <errno.h>

parent 346b6cdf
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
* This file implements gcrypt support functions in vlc * This file implements gcrypt support functions in vlc
*/ */
#include <errno.h>
#ifdef LIBVLC_USE_PTHREAD #ifdef LIBVLC_USE_PTHREAD
/** /**
* If possible, use gcrypt-provided thread implementation. This is so that * If possible, use gcrypt-provided thread implementation. This is so that
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#endif #endif
#include <stdarg.h> #include <stdarg.h>
#include <assert.h> #include <assert.h>
#include <errno.h>
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_demux.h> #include <vlc_demux.h>
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
#include <vlc_input.h> #include <vlc_input.h>
#include <ctype.h> #include <ctype.h>
#include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <sys/mman.h> #include <sys/mman.h>
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include <vlc_interface.h> #include <vlc_interface.h>
#include <vlc_keys.h> #include <vlc_keys.h>
#include <ctype.h> #include <ctype.h>
#include <errno.h>
#include <xcb/xcb.h> #include <xcb/xcb.h>
#include <xcb/xcb_keysyms.h> #include <xcb/xcb_keysyms.h>
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include <vlc_network.h> #include <vlc_network.h>
#include <assert.h> #include <assert.h>
#include <unistd.h> #include <unistd.h>
#include <errno.h>
#ifndef _POSIX_SPAWN #ifndef _POSIX_SPAWN
# define _POSIX_SPAWN (-1) # define _POSIX_SPAWN (-1)
#endif #endif
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include <ctype.h> #include <ctype.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h>
#include "dynamicoverlay.h" #include "dynamicoverlay.h"
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include <ctype.h> #include <ctype.h>
#include <limits.h> #include <limits.h>
#include <assert.h> #include <assert.h>
#include <errno.h>
#include "input_internal.h" #include "input_internal.h"
#include "event.h" #include "event.h"
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <assert.h> #include <assert.h>
#include <errno.h>
#include "vlc_block.h" #include "vlc_block.h"
/** /**
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include <assert.h> #include <assert.h>
#include <unistd.h> /* fsync() */ #include <unistd.h> /* fsync() */
#include <signal.h> #include <signal.h>
#include <errno.h>
#include <sched.h> #include <sched.h>
#ifdef __linux__ #ifdef __linux__
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include "libvlc.h" #include "libvlc.h"
#include <assert.h> #include <assert.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
# include <unistd.h> # include <unistd.h>
#endif #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