Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
a0e5fe35
Commit
a0e5fe35
authored
Jan 27, 2008
by
Rémi Denis-Courmont
Browse files
Fix symbols list, fix linking on platforms that DO have strnlen
parent
d5d9b5b3
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/vlc_fixups.h
View file @
a0e5fe35
...
...
@@ -40,6 +40,10 @@
# define strndup vlc_strndup
#endif
#ifndef HAVE_STRNLEN
# define strnlen vlc_strnlen
#endif
#ifndef HAVE_STRLCPY
# define strlcpy vlc_strlcpy
#endif
...
...
modules/codec/cc.c
View file @
a0e5fe35
...
...
@@ -51,10 +51,6 @@
#include <errno.h>
#include <string.h>
#if !defined( strnlen )
#define strnlen vlc_strnlen
#endif
/*****************************************************************************
* Module descriptor.
*****************************************************************************/
...
...
src/libvlc.sym
View file @
a0e5fe35
...
...
@@ -436,6 +436,7 @@ vlc_strdup
vlc_strlcpy
vlc_strncasecmp
vlc_strndup
vlc_strnlen
vlc_strtoll
vlc_submodule_create
__vlc_thread_create
...
...
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