]> git.sesse.net Git - vlc/commitdiff
Missing #include <errno.h>
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 12 Sep 2009 10:44:31 +0000 (13:44 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 12 Sep 2009 11:26:13 +0000 (14:26 +0300)
include/vlc_gcrypt.h
modules/access/rtp/rtp.c
modules/access/v4l2.c
modules/control/globalhotkeys/xcb.c
modules/stream_filter/decomp.c
modules/video_filter/dynamicoverlay/dynamicoverlay.c
src/input/input.c
src/misc/block.c
src/misc/pthread.c
src/misc/threads.c

index 4d94344ef1e9951de5ff3977f6e8b6b8f9dbc890..eec15c220f733affb590254ce038399c29aa5b6b 100644 (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
index 8d58d2e586c828a8c31491e45f613a8539a9f236..27b9138373c1f965be8bab695346793d829d52d0 100644 (file)
@@ -26,6 +26,7 @@
 #endif
 #include <stdarg.h>
 #include <assert.h>
+#include <errno.h>
 
 #include <vlc_common.h>
 #include <vlc_demux.h>
index f88d914df0e5385253cdefc25fa5358f5869fa69..01a7a01eb373a2bfad5c155fa9539ce38fa70afa 100644 (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>
index f19a6d5b93cd0889ecb455f85d52cd6087fcd636..3b159986e66e27969fa39bf721c9faa50e224075 100644 (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>
index 5171ea703d8e1e326044d601e58a6815c1cc0344..b74bd1c9f0fc6f995067361824a57d480f88d919 100644 (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
index dca20ce2cef72f0f3a4dbe2fa3edc1c7e7961063..77d6e05e4b97241a4bf449986bcbf0099c211276 100644 (file)
@@ -37,6 +37,7 @@
 
 #include <ctype.h>
 #include <fcntl.h>
+#include <errno.h>
 
 #include "dynamicoverlay.h"
 
index 5db01b47797eef890fbb2ec65be189f429c343c0..91371912671f208e8691f7f5f2ba10de30ec5dee 100644 (file)
@@ -34,6 +34,7 @@
 #include <ctype.h>
 #include <limits.h>
 #include <assert.h>
+#include <errno.h>
 
 #include "input_internal.h"
 #include "event.h"
index 9ffc6733d8755c82d9a9442a5cff2c8e4e962861..b57e63ab394ef3511bc445dbe5abf7b148232eb9 100644 (file)
@@ -31,6 +31,7 @@
 #include <vlc_common.h>
 #include <sys/stat.h>
 #include <assert.h>
+#include <errno.h>
 #include "vlc_block.h"
 
 /**
index d31e38810b3007f22bbc0f89ec208f2e526a4edc..41c09d8e2fb112b30d5c06879a3e48bf067af7cb 100644 (file)
@@ -35,6 +35,7 @@
 #include <assert.h>
 #include <unistd.h> /* fsync() */
 #include <signal.h>
+#include <errno.h>
 
 #include <sched.h>
 #ifdef __linux__
index 7b68ce72c467e89bb03096ea95f33b1fd147bbf8..acc2d4f2ef8460ea565f7b9f723f3443bb7e3d15 100644 (file)
@@ -33,6 +33,7 @@
 
 #include "libvlc.h"
 #include <assert.h>
+#include <errno.h>
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif