mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
Introduce new fatcosmocc command
This new script is an alternative to the `cosmocc` command. It's still a work in progress. It abstracts all the gory details of building separate copies of your executable and then running the apelink.com program.
This commit is contained in:
parent
8fc778162e
commit
d53c335a45
35 changed files with 1151 additions and 525 deletions
|
@ -9,11 +9,6 @@ COSMOPOLITAN_C_START_
|
|||
|
||||
int rand(void);
|
||||
void srand(unsigned);
|
||||
double poz(double);
|
||||
double pochisq(double, int);
|
||||
void rt_init(int);
|
||||
void rt_add(void *, int);
|
||||
void rt_end(double *, double *, double *, double *, double *);
|
||||
char *strfry(char *);
|
||||
int getentropy(void *, size_t);
|
||||
ssize_t getrandom(void *, size_t, unsigned);
|
||||
|
@ -28,6 +23,8 @@ void srandom(unsigned);
|
|||
#define rngset __rngset
|
||||
#define rdrand __rdrand
|
||||
#define rdseed __rdseed
|
||||
double poz(double);
|
||||
double pochisq(double, int);
|
||||
uint64_t lemur64(void);
|
||||
uint64_t _rand64(void);
|
||||
uint64_t vigna(void);
|
||||
|
@ -43,6 +40,9 @@ double _real2(uint64_t);
|
|||
double _real3(uint64_t);
|
||||
double MeasureEntropy(const char *, size_t);
|
||||
void *rngset(void *, size_t, uint64_t (*)(void), size_t);
|
||||
void rt_init(int);
|
||||
void rt_add(void *, int);
|
||||
void rt_end(double *, double *, double *, double *, double *);
|
||||
#endif /* COSMO */
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue