Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
745bd15f
Commit
745bd15f
authored
Sep 12, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing #include <errno.h>
parent
346b6cdf
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
11 additions
and
0 deletions
+11
-0
include/vlc_gcrypt.h
include/vlc_gcrypt.h
+2
-0
modules/access/rtp/rtp.c
modules/access/rtp/rtp.c
+1
-0
modules/access/v4l2.c
modules/access/v4l2.c
+1
-0
modules/control/globalhotkeys/xcb.c
modules/control/globalhotkeys/xcb.c
+1
-0
modules/stream_filter/decomp.c
modules/stream_filter/decomp.c
+1
-0
modules/video_filter/dynamicoverlay/dynamicoverlay.c
modules/video_filter/dynamicoverlay/dynamicoverlay.c
+1
-0
src/input/input.c
src/input/input.c
+1
-0
src/misc/block.c
src/misc/block.c
+1
-0
src/misc/pthread.c
src/misc/pthread.c
+1
-0
src/misc/threads.c
src/misc/threads.c
+1
-0
No files found.
include/vlc_gcrypt.h
View file @
745bd15f
...
...
@@ -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
...
...
modules/access/rtp/rtp.c
View file @
745bd15f
...
...
@@ -26,6 +26,7 @@
#endif
#include <stdarg.h>
#include <assert.h>
#include <errno.h>
#include <vlc_common.h>
#include <vlc_demux.h>
...
...
modules/access/v4l2.c
View file @
745bd15f
...
...
@@ -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>
...
...
modules/control/globalhotkeys/xcb.c
View file @
745bd15f
...
...
@@ -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>
...
...
modules/stream_filter/decomp.c
View file @
745bd15f
...
...
@@ -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
...
...
modules/video_filter/dynamicoverlay/dynamicoverlay.c
View file @
745bd15f
...
...
@@ -37,6 +37,7 @@
#include <ctype.h>
#include <fcntl.h>
#include <errno.h>
#include "dynamicoverlay.h"
...
...
src/input/input.c
View file @
745bd15f
...
...
@@ -34,6 +34,7 @@
#include <ctype.h>
#include <limits.h>
#include <assert.h>
#include <errno.h>
#include "input_internal.h"
#include "event.h"
...
...
src/misc/block.c
View file @
745bd15f
...
...
@@ -31,6 +31,7 @@
#include <vlc_common.h>
#include <sys/stat.h>
#include <assert.h>
#include <errno.h>
#include "vlc_block.h"
/**
...
...
src/misc/pthread.c
View file @
745bd15f
...
...
@@ -35,6 +35,7 @@
#include <assert.h>
#include <unistd.h>
/* fsync() */
#include <signal.h>
#include <errno.h>
#include <sched.h>
#ifdef __linux__
...
...
src/misc/threads.c
View file @
745bd15f
...
...
@@ -33,6 +33,7 @@
#include "libvlc.h"
#include <assert.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment