Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
1b834066
Commit
1b834066
authored
1 year ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
vlc_fixups: don't include system headers with forced extern "C"
parent
daf9ecb7
No related branches found
Branches containing commit
No related tags found
1 merge request
!3557
don't force extern C when including other headers
Pipeline
#334731
passed with stage
in 27 minutes and 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vlc_fixups.h
+31
-0
31 additions, 0 deletions
include/vlc_fixups.h
with
31 additions
and
0 deletions
include/vlc_fixups.h
+
31
−
0
View file @
1b834066
...
...
@@ -454,11 +454,18 @@ void swab (const void *, void *, ssize_t);
/* Socket stuff */
#ifndef HAVE_INET_PTON
# ifdef __cplusplus
}
# endif
# ifndef _WIN32
# include <sys/socket.h>
#else
typedef
int
socklen_t
;
# endif
# ifdef __cplusplus
extern
"C"
{
# endif
int
inet_pton
(
int
,
const
char
*
,
void
*
);
const
char
*
inet_ntop
(
int
,
const
void
*
,
char
*
,
socklen_t
);
#endif
...
...
@@ -491,7 +498,13 @@ int poll (struct pollfd *, unsigned, int);
#endif
#ifndef HAVE_IF_NAMEINDEX
# ifdef __cplusplus
}
# endif
#include
<errno.h>
# ifdef __cplusplus
extern
"C"
{
# endif
# ifndef HAVE_STRUCT_IF_NAMEINDEX
struct
if_nameindex
{
...
...
@@ -529,7 +542,13 @@ struct msghdr
};
# ifndef HAVE_IF_NAMETOINDEX
# ifdef __cplusplus
}
# endif
# include <stdlib.h>
/* a define may change from the real atoi declaration */
# ifdef __cplusplus
extern
"C"
{
# endif
static
inline
int
if_nametoindex
(
const
char
*
name
)
{
return
atoi
(
name
);
...
...
@@ -746,7 +765,13 @@ char *realpath(const char * restrict pathname, char * restrict resolved_path);
#ifdef __APPLE__
# define fdatasync fsync
# ifdef __cplusplus
}
# endif
# include <time.h>
# ifdef __cplusplus
extern
"C"
{
# endif
# ifndef TIMER_ABSTIME
# define TIMER_ABSTIME 0x01
# endif
...
...
@@ -766,7 +791,13 @@ int clock_getres(clockid_t clock_id, struct timespec *tp);
#ifndef _WIN32
# ifndef HAVE_CLOCK_NANOSLEEP
# ifdef __cplusplus
}
# endif
# include <time.h>
# ifdef __cplusplus
extern
"C"
{
# endif
int
clock_nanosleep
(
clockid_t
clock_id
,
int
flags
,
const
struct
timespec
*
rqtp
,
struct
timespec
*
rmtp
);
# endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment