blob: 357a396f8bc9bfee08e02735bbf6da6f5fd94969 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <stddef.h>
// TODO since this is shared with the kernel, maybe i could turn this into an
// stb-style header file
int memcmp(const void *s1, const void *s2, size_t n);
int printf(const char *fmt, ...);
|