haiku/headers/posix/div_t.h
Daniel Reinhold 8c75beefbf initial checkin
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1635 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-10-24 19:52:59 +00:00

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_ */