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
a52793e9
Commit
a52793e9
authored
Jan 11, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless <sys/stat.h> includes
parent
22fdf98f
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
3 additions
and
41 deletions
+3
-41
modules/access/dv.c
modules/access/dv.c
+0
-3
modules/access/dvb/en50221.c
modules/access/dvb/en50221.c
+1
-3
modules/access/dvb/linux_dvb.c
modules/access/dvb/linux_dvb.c
+1
-3
modules/access/dvdread.c
modules/access/dvdread.c
+0
-1
modules/access/mms/mmstu.c
modules/access/mms/mmstu.c
+0
-3
modules/access/pvr.c
modules/access/pvr.c
+0
-1
modules/access_output/file.c
modules/access_output/file.c
+0
-1
modules/access_output/udp.c
modules/access_output/udp.c
+0
-1
modules/control/http/http.h
modules/control/http/http.h
+0
-3
modules/control/telnet.c
modules/control/telnet.c
+0
-1
modules/misc/dummy/decoder.c
modules/misc/dummy/decoder.c
+0
-3
modules/misc/lua/demux.c
modules/misc/lua/demux.c
+0
-4
modules/misc/lua/libs/net.c
modules/misc/lua/libs/net.c
+1
-0
modules/misc/lua/vlc.h
modules/misc/lua/vlc.h
+0
-4
modules/services_discovery/mtp.c
modules/services_discovery/mtp.c
+0
-4
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+0
-1
modules/video_filter/atmo/AtmoSerialConnection.cpp
modules/video_filter/atmo/AtmoSerialConnection.cpp
+0
-3
src/interface/intf_eject.c
src/interface/intf_eject.c
+0
-1
src/video_output/vout_intf.c
src/video_output/vout_intf.c
+0
-1
No files found.
modules/access/dv.c
View file @
a52793e9
...
@@ -39,9 +39,6 @@
...
@@ -39,9 +39,6 @@
#ifdef HAVE_SYS_TIME_H
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# include <sys/time.h>
#endif
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_FCNTL_H
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
# include <fcntl.h>
#endif
#endif
...
...
modules/access/dvb/en50221.c
View file @
a52793e9
...
@@ -33,12 +33,10 @@
...
@@ -33,12 +33,10 @@
#include <errno.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <fcntl.h>
#include <time.h>
#include <time.h>
#include <unistd.h>
#include <unistd.h>
#include <sys/stat.h>
#include <poll.h>
#include <sys/poll.h>
#include <netinet/in.h>
#include <netinet/in.h>
/* DVB Card Drivers */
/* DVB Card Drivers */
...
...
modules/access/dvb/linux_dvb.c
View file @
a52793e9
...
@@ -34,12 +34,10 @@
...
@@ -34,12 +34,10 @@
#include <errno.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <fcntl.h>
#include <time.h>
#include <time.h>
#include <unistd.h>
#include <unistd.h>
#include <sys/stat.h>
#include <poll.h>
#include <sys/poll.h>
#include <vlc_charset.h>
#include <vlc_charset.h>
/* DVB Card Drivers */
/* DVB Card Drivers */
...
...
modules/access/dvdread.c
View file @
a52793e9
...
@@ -48,7 +48,6 @@
...
@@ -48,7 +48,6 @@
#include <fcntl.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_DVDREAD_DVD_READER_H
#ifdef HAVE_DVDREAD_DVD_READER_H
#include <dvdread/dvd_reader.h>
#include <dvdread/dvd_reader.h>
...
...
modules/access/mms/mmstu.c
View file @
a52793e9
...
@@ -47,9 +47,6 @@
...
@@ -47,9 +47,6 @@
#ifdef HAVE_SYS_TYPES_H
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
# include <sys/types.h>
#endif
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_POLL
#ifdef HAVE_POLL
# include <poll.h>
# include <poll.h>
#endif
#endif
...
...
modules/access/pvr.c
View file @
a52793e9
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
#include <vlc_charset.h>
#include <vlc_charset.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <fcntl.h>
#include <unistd.h>
#include <unistd.h>
#include <linux/types.h>
#include <linux/types.h>
...
...
modules/access_output/file.c
View file @
a52793e9
...
@@ -31,7 +31,6 @@
...
@@ -31,7 +31,6 @@
#endif
#endif
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <time.h>
#include <fcntl.h>
#include <fcntl.h>
#include <errno.h>
#include <errno.h>
...
...
modules/access_output/udp.c
View file @
a52793e9
...
@@ -33,7 +33,6 @@
...
@@ -33,7 +33,6 @@
#include <vlc_plugin.h>
#include <vlc_plugin.h>
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <fcntl.h>
#include <assert.h>
#include <assert.h>
...
...
modules/control/http/http.h
View file @
a52793e9
...
@@ -45,9 +45,6 @@
...
@@ -45,9 +45,6 @@
#include <vlc_acl.h>
#include <vlc_acl.h>
#include <vlc_charset.h>
#include <vlc_charset.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_FCNTL_H
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
# include <fcntl.h>
#endif
#endif
...
...
modules/control/telnet.c
View file @
a52793e9
...
@@ -36,7 +36,6 @@
...
@@ -36,7 +36,6 @@
#include <vlc_input.h>
#include <vlc_input.h>
#include <stdbool.h>
#include <stdbool.h>
#include <sys/stat.h>
#include <errno.h>
#include <errno.h>
#include <fcntl.h>
#include <fcntl.h>
...
...
modules/misc/dummy/decoder.c
View file @
a52793e9
...
@@ -40,9 +40,6 @@
...
@@ -40,9 +40,6 @@
#ifdef HAVE_SYS_TYPES_H
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
/* open() */
# include <sys/types.h>
/* open() */
#endif
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_FCNTL_H
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
# include <fcntl.h>
#endif
#endif
...
...
modules/misc/lua/demux.c
View file @
a52793e9
...
@@ -36,10 +36,6 @@
...
@@ -36,10 +36,6 @@
#include <vlc_strings.h>
#include <vlc_strings.h>
#include <vlc_charset.h>
#include <vlc_charset.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#include "vlc.h"
#include "vlc.h"
#include "libs.h"
#include "libs.h"
#include "libs/playlist.h"
#include "libs/playlist.h"
...
...
modules/misc/lua/libs/net.c
View file @
a52793e9
...
@@ -42,6 +42,7 @@
...
@@ -42,6 +42,7 @@
#ifdef HAVE_POLL
#ifdef HAVE_POLL
#include <poll.h>
/* poll structures and defines */
#include <poll.h>
/* poll structures and defines */
#endif
#endif
#include <sys/stat.h>
#include "../vlc.h"
#include "../vlc.h"
#include "../libs.h"
#include "../libs.h"
...
...
modules/misc/lua/vlc.h
View file @
a52793e9
...
@@ -37,10 +37,6 @@
...
@@ -37,10 +37,6 @@
#include <vlc_stream.h>
#include <vlc_stream.h>
#include <vlc_charset.h>
#include <vlc_charset.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#include <lua.h>
/* Low level lua C API */
#include <lua.h>
/* Low level lua C API */
#include <lauxlib.h>
/* Higher level C API */
#include <lauxlib.h>
/* Higher level C API */
#include <lualib.h>
/* Lua libs */
#include <lualib.h>
/* Lua libs */
...
...
modules/services_discovery/mtp.c
View file @
a52793e9
...
@@ -31,10 +31,6 @@
...
@@ -31,10 +31,6 @@
#include <vlc_interface.h>
#include <vlc_interface.h>
#include <vlc_services_discovery.h>
#include <vlc_services_discovery.h>
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#include "libmtp.h"
#include "libmtp.h"
/*****************************************************************************
/*****************************************************************************
...
...
modules/stream_out/rtp.c
View file @
a52793e9
...
@@ -50,7 +50,6 @@
...
@@ -50,7 +50,6 @@
# include <sys/types.h>
# include <sys/types.h>
# include <unistd.h>
# include <unistd.h>
# include <fcntl.h>
# include <fcntl.h>
# include <sys/stat.h>
#endif
#endif
#ifdef HAVE_ARPA_INET_H
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
# include <arpa/inet.h>
...
...
modules/video_filter/atmo/AtmoSerialConnection.cpp
View file @
a52793e9
...
@@ -15,8 +15,6 @@
...
@@ -15,8 +15,6 @@
#include <stdio.h>
#include <stdio.h>
#include <fcntl.h>
#include <fcntl.h>
#include <sys/stat.h>
#if !defined(WIN32)
#if !defined(WIN32)
#include <termios.h>
#include <termios.h>
#include <unistd.h>
#include <unistd.h>
...
@@ -24,7 +22,6 @@
...
@@ -24,7 +22,6 @@
/*
/*
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <fcntl.h>
#include <string.h>
#include <string.h>
#include <termios.h>
#include <termios.h>
...
...
src/interface/intf_eject.c
View file @
a52793e9
...
@@ -55,7 +55,6 @@
...
@@ -55,7 +55,6 @@
# endif
# endif
# include <sys/types.h>
# include <sys/types.h>
# include <sys/stat.h>
# include <sys/ioctl.h>
# include <sys/ioctl.h>
# include <sys/ioctl.h>
# include <sys/ioctl.h>
...
...
src/video_output/vout_intf.c
View file @
a52793e9
...
@@ -33,7 +33,6 @@
...
@@ -33,7 +33,6 @@
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
/* free() */
#include <stdlib.h>
/* free() */
#include <sys/types.h>
/* opendir() */
#include <sys/types.h>
/* opendir() */
#include <sys/stat.h>
#include <dirent.h>
/* opendir() */
#include <dirent.h>
/* opendir() */
#include <assert.h>
#include <assert.h>
#include <time.h>
/* strftime */
#include <time.h>
/* strftime */
...
...
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