migrate: to gitea

This commit is contained in:
2026-07-30 09:56:33 +05:30
commit c7443a5bb0
37 changed files with 734 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef _STDIO_H
#define _STDIO_H 1
#include <sys/cdefs.h>
#define EOF (-1)
#ifdef __cplusplus
extern "C" {
#endif
int printf(const char* __restrict, ...);
int putchar(int);
int puts(const char*);
#ifdef __cplusplus
}
#endif
#endif