]> git.saurik.com Git - minimal.git/commitdiff
Quick naming fixes.
authorJay Freeman (saurik) <saurik@saurik.com>
Sat, 24 Nov 2007 10:43:46 +0000 (10:43 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Sat, 24 Nov 2007 10:43:46 +0000 (10:43 +0000)
mapping.h
minimal.h [deleted file]
platform.h [new file with mode: 0644]

index 3f4fc32a7725c3f2ae93698fe9b09a5ecc3c8943..67a9e23ea60cd983879131d0febc410161b34546 100644 (file)
--- a/mapping.h
+++ b/mapping.h
@@ -7,7 +7,7 @@
 #include <sys/stat.h>
 #include <fcntl.h>
 
-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/minimal.h
deleted file mode 100644 (file)
index 6e26870..0000000
--- a/minimal.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#define _assert(expr) \
-    do if (!(expr)) { \
-        fprintf(stderr, "%s(%u): _assert(%u:%s)\n", __FILE__, __LINE__, errno, #expr); \
-        exit(1); \
-    } while (false)
-
-#define _syscall(expr) \
-    do if ((long) (expr) != -1) \
-        break; \
-    else switch (errno) { \
-        case EINTR: \
-            continue; \
-        default: \
-            _assert(false); \
-    } while (true)
-
-#define _forever \
-    for (;;)
-
-#define _trace() \
-    printf("_trace(%s:%u)\n", __FILE__, __LINE__)
-
-#define _not(type) \
-    ((type) ~ (type) 0)
-
-#include <stdio.h>
-#include <stdbool.h>
-#include <stdlib.h>
-#include <stdint.h>
diff --git a/platform.h b/platform.h
new file mode 100644 (file)
index 0000000..6e26870
--- /dev/null
@@ -0,0 +1,29 @@
+#define _assert(expr) \
+    do if (!(expr)) { \
+        fprintf(stderr, "%s(%u): _assert(%u:%s)\n", __FILE__, __LINE__, errno, #expr); \
+        exit(1); \
+    } while (false)
+
+#define _syscall(expr) \
+    do if ((long) (expr) != -1) \
+        break; \
+    else switch (errno) { \
+        case EINTR: \
+            continue; \
+        default: \
+            _assert(false); \
+    } while (true)
+
+#define _forever \
+    for (;;)
+
+#define _trace() \
+    printf("_trace(%s:%u)\n", __FILE__, __LINE__)
+
+#define _not(type) \
+    ((type) ~ (type) 0)
+
+#include <stdio.h>
+#include <stdbool.h>
+#include <stdlib.h>
+#include <stdint.h>