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
456
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
dac27877
Commit
dac27877
authored
10 years ago
by
Jean-Baptiste Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Fix issues with replaced compat functions in C++ modules
Notably poll, inet*, swab, *rand48, and tsearch
parent
4a91b3ae
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vlc_fixups.h
+8
-0
8 additions, 0 deletions
include/vlc_fixups.h
with
8 additions
and
0 deletions
include/vlc_fixups.h
+
8
−
0
View file @
dac27877
...
...
@@ -256,6 +256,10 @@ static inline locale_t newlocale(int mask, const char * locale, locale_t base)
#define N_(str) gettext_noop (str)
#define gettext_noop(str) (str)
#ifdef __cplusplus
extern
"C"
{
#endif
#ifndef HAVE_SWAB
void
swab
(
const
void
*
,
void
*
,
ssize_t
);
#endif
...
...
@@ -339,6 +343,10 @@ long jrand48 (unsigned short subi[3]);
long
nrand48
(
unsigned
short
subi
[
3
]);
#endif
#ifdef __cplusplus
}
/* extern "C" */
#endif
#ifdef __OS2__
# undef HAVE_FORK
/* Implementation of fork() is imperfect on OS/2 */
#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