Commit 30d5ce7f authored by Pierre d'Herbemont's avatar Pierre d'Herbemont Committed by Alexandre Julliard

Define MSVCRT_div_t and MSVCRT_ldiv_t.

parent e7dba771
......@@ -226,6 +226,16 @@ struct MSVCRT__complex {
double y; /* Imaginary part */
};
typedef struct MSVCRT__div_t {
int quot; /* quotient */
int rem; /* remainder */
} MSVCRT_div_t;
typedef struct MSVCRT__ldiv_t {
long quot; /* quotient */
long rem; /* remainder */
} MSVCRT_ldiv_t;
struct MSVCRT__heapinfo {
int* _pentry;
MSVCRT_size_t _size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment