From 79a6eea7e198439cea3eef0de0e27454a223c989 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 6 Dec 2015 15:31:54 +0100 Subject: [PATCH] Cleanups --- file_ops.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/file_ops.h b/file_ops.h index a681483055..e33c5ba85a 100644 --- a/file_ops.h +++ b/file_ops.h @@ -14,15 +14,14 @@ * If not, see . */ -#ifndef __LIBRETRO_SDK_FILE_OPS_H -#define __LIBRETRO_SDK_FILE_OPS_H +#ifndef __RARCH_FILE_OPS_H +#define __RARCH_FILE_OPS_H -#include #include #include #include -#include -#include + +#include #ifdef __cplusplus extern "C" { @@ -47,7 +46,7 @@ int read_compressed_file(const char * path, void **buf, * Read the contents of a file into @buf. Will call read_compressed_file * if path contains a compressed file, otherwise will call read_generic_file. * - * Returns: true if file read, false on error. + * Returns: true (1) if file read, false (0) on error. */ int read_file(const char *path, void **buf, ssize_t *length);