Define MSVCRT_div_t and MSVCRT_ldiv_t.

This commit is contained in:
Pierre d'Herbemont 2004-07-06 18:45:02 +00:00 committed by Alexandre Julliard
parent e7dba771b4
commit 30d5ce7ffb
1 changed files with 10 additions and 0 deletions

View File

@ -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;