diff options
author | stefan <stefan@s00.xyz> | 2023-04-07 19:02:18 -0400 |
---|---|---|
committer | stefan <stefan@s00.xyz> | 2023-04-07 19:02:18 -0400 |
commit | a1a97aa7b2b0c3d1f3b6766446d605f83de1c561 (patch) | |
tree | 445f9419aee4e0ffdb7271d84474452c7e69d225 /sys/include/printf.h | |
parent | cd653dcee96a2673bf4ab5aadba0ecfaf5fe7a0f (diff) | |
download | sv-a1a97aa7b2b0c3d1f3b6766446d605f83de1c561.tar.gz |
stuff and things
Diffstat (limited to 'sys/include/printf.h')
-rw-r--r-- | sys/include/printf.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/include/printf.h b/sys/include/printf.h new file mode 100644 index 0000000..76debc3 --- /dev/null +++ b/sys/include/printf.h @@ -0,0 +1,7 @@ +#ifndef _KPRINTF_H +#define _KPRINTF_H + +int puts(const char *); +void printf(const char *, ...); + +#endif /* _KPRINTF_H */ |