Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Ooops, code that resists erasure, I've seen that in a movie.
  • Loading branch information
gabomdq committed Jun 20, 2014
1 parent 553cc07 commit 6c5cb54
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/filesystem/nacl/SDL_sysfilesystem.c
Expand Up @@ -24,24 +24,6 @@

#ifdef SDL_FILESYSTEM_NACL

/* SDL_RWops on NACL are implemented using nacl_io, and require mount points
* to be established before actual file operations are performed
*
* Ref: https://developers.google.com/native-client/dev/devguide/coding/nacl_io
*/

int
SDL_NaClMount(const char* source, const char* target, const char* filesystemtype,
unsigned long mountflags, const void *data) {
return mount(source, target, filesystemtype, mountflags, data);
}

int
SDL_NaClUmount(const char *target) {
return umount(target);
}


char *
SDL_GetBasePath(void)
{
Expand Down

0 comments on commit 6c5cb54

Please sign in to comment.