Blame | Last modification | View Log | RSS feed
#ifndef __TENDRA_STDLIB_H
#define __TENDRA_STDLIB_H
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
#define RAND_MAX 0x7ffffffd
#define MB_CUR_MAX 16 /*((size_t)___mb_cur_max())*/
typedef struct {
int quot; /* quotient */
int rem; /* remainder */
} div_t;
typedef struct {
long quot;
long rem;
} ldiv_t;
#endif