mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-15 15:20:02 +00:00
Remove plenty of makefile misconfigurations
This commit is contained in:
parent
9172fd42a0
commit
8b469389f6
186 changed files with 1408 additions and 901 deletions
|
@ -1,4 +1,15 @@
|
|||
#include "libc/runtime/valist.h"
|
||||
/* variadic arguments for chibicc */
|
||||
|
||||
/* <sync libc/runtime/valist.c> */
|
||||
struct __va_list {
|
||||
uint32_t gp_offset;
|
||||
uint32_t fp_offset;
|
||||
void *overflow_arg_area;
|
||||
void *reg_save_area;
|
||||
};
|
||||
/* </sync libc/runtime/valist.c> */
|
||||
|
||||
void *__va_arg(struct __va_list *, size_t, unsigned, unsigned);
|
||||
|
||||
#define __GNUC_VA_LIST 1
|
||||
#define __gnuc_va_list va_list
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue