summaryrefslogtreecommitdiff
path: root/src/stdlib/lldiv_t.h
blob: e7e72e6bdfdb84942dd626d306d421116ac6e8ad (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdlib.h>

typedef struct {
	long long int quot;
	long long int rem;
} lldiv_t;

/*
STDC(199901)
*/