8c75beefbf
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1635 a95241bf-73f2-0310-859d-f6bbb57e9c96
15 lines
159 B
C
15 lines
159 B
C
#ifndef _DIV_T_H_
|
|
#define _DIV_T_H_
|
|
|
|
typedef struct {
|
|
int quot;
|
|
int rem;
|
|
} div_t;
|
|
|
|
typedef struct {
|
|
long quot;
|
|
long rem;
|
|
} ldiv_t;
|
|
|
|
#endif /* _DIV_T_H_ */
|