first C hello world!
This commit is contained in:
parent
6acd24e315
commit
2fef698195
7 changed files with 68 additions and 47 deletions
4
05/stdarg.h
Normal file
4
05/stdarg.h
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue