xref: /haiku/headers/posix/div_t.h (revision 7120e97489acbf17d86d3f33e3b2e68974fd4b23)
1 #ifndef _DIV_T_H_
2 #define _DIV_T_H_
3 /*
4 ** Distributed under the terms of the OpenBeOS License.
5 */
6 
7 typedef struct {
8 	int	quot;
9 	int	rem;
10 } div_t;
11 
12 typedef struct {
13 	long quot;
14 	long rem;
15 } ldiv_t;
16 
17 typedef struct {
18 	long long quot;
19 	long long rem;
20 } lldiv_t;
21 
22 #endif /* _DIV_T_H_ */
23