Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / filesys / off_t.h
index 55ff174cd0ae5cb52583b847785007b43412ffa2..9caff4dbae88823f109b1d3ee99c7535f79a55ce 100644 (file)
@@ -8,4 +8,8 @@
    definition but not any others. */
 typedef int32_t off_t;
 
+/* Format specifier for printf(), e.g.:
+   printf ("offset=%"PROTd"\n", offset); */
+#define PROTd PRId32
+
 #endif /* filesys/off_t.h */