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