From 6c5cb5400f2ccd3395038f6942634739a14c9672 Mon Sep 17 00:00:00 2001 From: Gabriel Jacobo Date: Fri, 20 Jun 2014 11:01:05 -0300 Subject: [PATCH] Ooops, code that resists erasure, I've seen that in a movie. --- src/filesystem/nacl/SDL_sysfilesystem.c | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/filesystem/nacl/SDL_sysfilesystem.c b/src/filesystem/nacl/SDL_sysfilesystem.c index 802283b76783f..ff55b2ba9a98e 100644 --- a/src/filesystem/nacl/SDL_sysfilesystem.c +++ b/src/filesystem/nacl/SDL_sysfilesystem.c @@ -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) {