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