From c7409a79c71c1a3872961da764d336d67d180a6e Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sat, 24 Nov 2007 10:43:46 +0000 Subject: [PATCH] Quick naming fixes. --- mapping.h | 2 +- minimal.h => platform.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename minimal.h => platform.h (100%) diff --git a/mapping.h b/mapping.h index 3f4fc32..67a9e23 100644 --- a/mapping.h +++ b/mapping.h @@ -7,7 +7,7 @@ #include #include -void *Map(const char *path, size_t offset, size_t size, size_t *psize, bool ro) { +void *map(const char *path, size_t offset, size_t size, size_t *psize, bool ro) { int fd; _syscall(fd = open(path, ro ? O_RDONLY : O_RDWR)); diff --git a/minimal.h b/platform.h similarity index 100% rename from minimal.h rename to platform.h -- 2.50.0