Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / lib / user / stdio.h
diff --git a/src/lib/user/stdio.h b/src/lib/user/stdio.h
new file mode 100644 (file)
index 0000000..b9f3cc6
--- /dev/null
@@ -0,0 +1,7 @@
+#ifndef __LIB_USER_STDIO_H
+#define __LIB_USER_STDIO_H
+
+int hprintf (int, const char *, ...) PRINTF_FORMAT (2, 3);
+int vhprintf (int, const char *, va_list) PRINTF_FORMAT (2, 0);
+
+#endif /* lib/user/stdio.h */