foo
[eightysix] / kern / src / libc / string.h
diff --git a/kern/src/libc/string.h b/kern/src/libc/string.h
new file mode 100644 (file)
index 0000000..46dd696
--- /dev/null
@@ -0,0 +1,9 @@
+#ifndef STRING_H_
+#define STRING_H_
+
+#include <inttypes.h>
+
+void *memset(void *s, int c, size_t n);
+void __far *fmemset(void __far *s, int c, size_t n);
+
+#endif /* STRING_H_ */