mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
e557058ac8
This change addresses various open source compatibility issues, so that we pass 313/411 of the tests in https://github.com/jart/libc-test where earlier today we were passing about 30/411 of them, due to header toil. Please note that Glibc only passes 341/411 so 313 today is pretty good! - Make the conformance of libc/isystem/ headers nearly perfect - Import more of the remaining math library routines from Musl - Fix inconsistencies with type signatures of calls like umask - Write tests for getpriority/setpriority which work great now - conform to `struct sockaddr *` on remaining socket functions - Import a bunch of uninteresting stdlib functions e.g. rand48 - Introduce readdir_r, scandir, pthread_kill, sigsetjmp, etc.. Follow the instructions in our `tool/scripts/cosmocc` toolchain to run these tests yourself. You use `make CC=cosmocc` on the test repository
43 lines
1.7 KiB
C
43 lines
1.7 KiB
C
#ifndef COSMOPOLITAN_LIBC_RAND_RAND_H_
|
|
#define COSMOPOLITAN_LIBC_RAND_RAND_H_
|
|
#define RAND_MAX __INT_MAX__
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
/*───────────────────────────────────────────────────────────────────────────│─╗
|
|
│ cosmopolitan § random ─╬─│┼
|
|
╚────────────────────────────────────────────────────────────────────────────│*/
|
|
|
|
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);
|
|
char *initstate(unsigned, char *, size_t);
|
|
char *setstate(char *);
|
|
long random(void);
|
|
void srandom(unsigned);
|
|
|
|
uint64_t lemur64(void);
|
|
uint64_t _rand64(void);
|
|
uint64_t vigna(void);
|
|
uint64_t vigna_r(uint64_t[hasatleast 1]);
|
|
void svigna(uint64_t);
|
|
uint64_t rdrand(void);
|
|
uint64_t rdseed(void);
|
|
void _smt19937(uint64_t);
|
|
void _Smt19937(uint64_t[], size_t);
|
|
uint64_t _mt19937(void);
|
|
double _real1(uint64_t);
|
|
double _real2(uint64_t);
|
|
double _real3(uint64_t);
|
|
double MeasureEntropy(const char *, size_t);
|
|
void *rngset(void *, size_t, uint64_t (*)(void), size_t);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_RAND_RAND_H_ */
|