From d074f4a983d20ee93354dd8943994010fe385c96 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 18 Aug 2012 11:45:26 +0900 Subject: [PATCH] Hack in a fake version of "access". It seems access is unimplemented in the ps3 toolchain. --- libs/util/sys.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/util/sys.c b/libs/util/sys.c index 47c46d203..1453d7a70 100644 --- a/libs/util/sys.c +++ b/libs/util/sys.c @@ -192,7 +192,12 @@ Sys_FileTime (const char *path) if (_access (path, R_OK) == 0) return 0; # else -# error do not know how to check access + int fd; + + if ((fd = open (path, O_RDONLY)) >= 0) { + close (fd); + return 0; + } # endif #endif return -1;