Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
3e27dab6
Commit
3e27dab6
authored
Sep 24, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "HAVE_WIN32 -> WIN32"
This reverts commit
7fe3a136
.
parent
d0031ad2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/extras/libc.c
src/extras/libc.c
+2
-2
No files found.
src/extras/libc.c
View file @
3e27dab6
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
#if defined(HAVE_POSIX_MEMALIGN)
#if defined(HAVE_POSIX_MEMALIGN)
# include <stdlib.h>
# include <stdlib.h>
#elif defined(HAVE_MEMALIGN) || defined(WIN32)
#elif defined(HAVE_MEMALIGN) || defined(
HAVE_
WIN32)
# include <malloc.h>
# include <malloc.h>
#endif
#endif
...
@@ -434,7 +434,7 @@ void *vlc_memalign(size_t align, size_t size)
...
@@ -434,7 +434,7 @@ void *vlc_memalign(size_t align, size_t size)
base
=
NULL
;
base
=
NULL
;
#elif defined(HAVE_MEMALIGN)
#elif defined(HAVE_MEMALIGN)
base
=
memalign
(
align
,
size
);
base
=
memalign
(
align
,
size
);
#elif defined(WIN32)
#elif defined(
HAVE_
WIN32)
base
=
__mingw_aligned_malloc
(
size
,
align
);
base
=
__mingw_aligned_malloc
(
size
,
align
);
#else
#else
# error Unimplemented!
# error Unimplemented!
...
...
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