X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fnative_client_sdk%2Fsrc%2Flibraries%2Fnacl_io%2Fnacl_io.h;h=bd76bbe3d1ccc3753c76b060369409502905ec0a;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=c6ed47262171ef65ce1f8c10054380392be3d8cf;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/native_client_sdk/src/libraries/nacl_io/nacl_io.h b/src/native_client_sdk/src/libraries/nacl_io/nacl_io.h index c6ed472..bd76bbe 100644 --- a/src/native_client_sdk/src/libraries/nacl_io/nacl_io.h +++ b/src/native_client_sdk/src/libraries/nacl_io/nacl_io.h @@ -29,7 +29,7 @@ typedef void (*nacl_io_mount_callback_t)(const char* source, * NOTE: If you initialize nacl_io with this constructor, you cannot * use any filesystems that require PPAPI; e.g. persistent storage, etc. */ -int nacl_io_init(); +int nacl_io_init(void); /** * Initialize nacl_io with PPAPI support. @@ -57,7 +57,7 @@ int nacl_io_init_ppapi(PP_Instance instance, PPB_GetInterface get_interface); * This removes interception for POSIX C-library function and releases * any associated resources. */ -int nacl_io_uninit(); +int nacl_io_uninit(void); void nacl_io_set_exit_callback(nacl_io_exit_callback_t exit_callback, void* user_data);