meta: move photon/libc to root

This commit is contained in:
2026-02-08 20:45:25 +00:00
parent f00e74260d
commit 345a37962e
140 changed files with 0 additions and 0 deletions

16
libc/stdio/__printf.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef __PRINTF_H_
#define __PRINTF_H_
struct __printf_backend;
typedef void(*__printf_backend_fn)(struct __printf_backend *, char);
struct __printf_backend {
__printf_backend_fn out;
void *arg;
};
extern int __xprintf(struct __printf_backend *bk, const char *format,
va_list va);
#endif