Commit b8c27cca authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

include: Add lldiv and lldiv_t.

parent 7bb7bc86
......@@ -60,6 +60,11 @@ typedef struct _ldiv_t {
__msvcrt_long rem;
} ldiv_t;
typedef struct _lldiv_t {
__int64 quot;
__int64 rem;
} lldiv_t;
#define _countof(x) (sizeof(x)/sizeof((x)[0]))
......@@ -194,6 +199,7 @@ void* __cdecl calloc(size_t,size_t);
div_t __cdecl div(int,int);
ldiv_t __cdecl ldiv(__msvcrt_long,__msvcrt_long);
#endif
lldiv_t __cdecl lldiv(__int64,__int64);
void __cdecl exit(int);
void __cdecl free(void*);
char* __cdecl getenv(const char*);
......
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