initial checkin

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1635 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Daniel Reinhold 2002-10-24 19:52:59 +00:00
parent 6ec7a3e7be
commit 8c75beefbf

14
headers/posix/div_t.h Normal file
View File

@ -0,0 +1,14 @@
#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_ */