From 8c75beefbfd8bf92b6e3b53285a3f0003a901fe1 Mon Sep 17 00:00:00 2001 From: Daniel Reinhold Date: Thu, 24 Oct 2002 19:52:59 +0000 Subject: [PATCH] initial checkin git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1635 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/div_t.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 headers/posix/div_t.h diff --git a/headers/posix/div_t.h b/headers/posix/div_t.h new file mode 100644 index 0000000000..a40d6c05e3 --- /dev/null +++ b/headers/posix/div_t.h @@ -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_ */