first C hello world!

This commit is contained in:
pommicket 2022-02-13 15:07:26 -05:00
parent 6acd24e315
commit 2fef698195
7 changed files with 68 additions and 47 deletions

4
05/stdarg.h Normal file
View file

@ -0,0 +1,4 @@
typedef unsigned long va_list;
#define va_start(list, arg) ((list) = (unsigned long)&arg)
#define va_arg(list, type) (*((type *)(list += ((sizeof(type) + 7) & 0xfffffffffffffff8))))
#define va_end(list)