Commit 9f50af25 authored by Alexandre Julliard's avatar Alexandre Julliard

Avoid common symbols on Darwin/Mac OS X.

parent 8543a5db
......@@ -120,7 +120,11 @@ extern int i386_set_ldt(int, union descriptor *, int);
#endif /* __i386__ */
/* local copy of the LDT */
#ifdef __APPLE__
struct __wine_ldt_copy wine_ldt_copy = { { 0, 0, 0 } };
#else
struct __wine_ldt_copy wine_ldt_copy;
#endif
static const LDT_ENTRY null_entry; /* all-zeros, used to clear LDT entries */
......
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