Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
fuse-libretro
Commits
65f1b61d
Commit
65f1b61d
authored
Aug 31, 2015
by
Andre Leiradella
Committed by
Thomas Conté
Apr 19, 2021
Browse files
fixed vita build
parent
bc92f852
Pipeline
#20586
passed with stages
in 3 minutes and 7 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
fuse/compat.h
View file @
65f1b61d
...
...
@@ -27,7 +27,11 @@
#define FUSE_COMPAT_H
#include <stdio.h>
#ifndef VITA
#include <dirent.h>
#endif
#include <stdlib.h>
#include <sys/types.h>
...
...
@@ -131,11 +135,13 @@ int compat_get_next_path( path_context *ctx );
typedef
FILE
*
compat_fd
;
#ifndef GEKKO
typedef
DIR
*
compat_dir
;
#else
/* #ifndef GEKKO */
#if defined( GEKKO )
typedef
DIR_ITER
*
compat_dir
;
#endif
/* #ifndef GEKKO */
#elif defined( VITA )
typedef
void
*
compat_dir
;
#else
typedef
DIR
*
compat_dir
;
#endif
extern
const
compat_fd
COMPAT_FILE_OPEN_FAILED
;
...
...
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