mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-26 04:20:30 +00:00
Fix ARG_MAX with chibicc documentation generator
This commit is contained in:
parent
d230a01222
commit
1a29424c52
2 changed files with 18 additions and 2 deletions
17
third_party/chibicc/chibicc.main.c
vendored
17
third_party/chibicc/chibicc.main.c
vendored
|
@ -1,7 +1,22 @@
|
|||
#include "libc/mem/arena.h"
|
||||
#include "libc/runtime/internal.h"
|
||||
#include "libc/x/x.h"
|
||||
#include "third_party/chibicc/chibicc.h"
|
||||
#include "tool/build/lib/getargs.h"
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
return chibicc(argc, argv);
|
||||
int n;
|
||||
char **p;
|
||||
const char *arg;
|
||||
struct GetArgs ga;
|
||||
n = 0;
|
||||
p = xcalloc(n + 1, sizeof(*p));
|
||||
getargs_init(&ga, argv);
|
||||
while ((arg = getargs_next(&ga))) {
|
||||
p = xrealloc(p, (++n + 1) * sizeof(*p));
|
||||
p[n - 1] = xstrdup(arg);
|
||||
p[n - 0] = 0;
|
||||
}
|
||||
getargs_destroy(&ga);
|
||||
return chibicc(n, p);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue