17extern unsigned long strtoul (
const char *
string,
char **endp,
int base );
18extern unsigned long long strtoull (
const char *
string,
char **endp,
29extern void *
realloc (
void *old_ptr,
size_t new_size );
30extern void free (
void *ptr );
57extern long int random (
void );
58extern void srandom (
unsigned int seed );
60static inline int rand (
void ) {
64static inline void srand (
unsigned int seed ) {
76 return __builtin_abs (
value );
pseudo_bit_t value[0x00020]
#define __asmcall
Declare a function with standard calling conventions.
uint8_t system[ETH_ALEN]
System identifier.
#define __malloc
Declare a pointer returned by a function as a unique memory address as returned by malloc-type functi...
uint16_t size
Buffer size.
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
static void(* free)(struct refcnt *refcnt))
static void srand(unsigned int seed)
unsigned long strtoul(const char *string, char **endp, int base)
Convert string to numeric value.
long int random(void)
Generate a pseudo-random number between 0 and 2147483647L or 2147483562?
void *__malloc zalloc(size_t len)
Allocate cleared memory.
void * realloc(void *old_ptr, size_t new_size)
Reallocate memory.
void *__malloc malloc(size_t size)
Allocate memory.
__asmcall int main(void)
Main entry point.
unsigned long long strtoull(const char *string, char **endp, int base)
Convert string to numeric value.
static void *__malloc calloc(size_t nmemb, size_t size)
Allocate cleared memory.
void srandom(unsigned int seed)
Seed the pseudo-random number generator.