xref: /haiku/headers/posix/div_t.h (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2002-2012 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _DIV_T_H_
6 #define _DIV_T_H_
7 
8 
9 typedef struct {
10 	int	quot;
11 	int	rem;
12 } div_t;
13 
14 typedef struct {
15 	long quot;
16 	long rem;
17 } ldiv_t;
18 
19 typedef struct {
20 	long long quot;
21 	long long rem;
22 } lldiv_t;
23 
24 #endif /* _DIV_T_H_ */
25