diff options
author | Chris Robinson <[email protected]> | 2010-11-28 14:27:07 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-11-28 14:27:07 -0800 |
commit | 490d1c6a8ec45bb6cfd80f92155ae6ae93098785 (patch) | |
tree | aeab3a5d2b3a7e14165437c2e0921797d6648575 /Alc | |
parent | 0e748d98d5db22d259e0803f5318fb61bc7e9c2e (diff) |
Prefer GCC's constructor, even in Windows
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -377,6 +377,10 @@ static FILE *LogFile; /////////////////////////////////////////////////////// // ALC Related helper functions +#ifdef HAVE_GCC_DESTRUCTOR +static void alc_init(void) __attribute__((constructor)); +static void alc_deinit(void) __attribute__((destructor)); +#else #ifdef _WIN32 static void alc_init(void); static void alc_deinit(void); @@ -399,10 +403,6 @@ BOOL APIENTRY DllMain(HANDLE hModule,DWORD ul_reason_for_call,LPVOID lpReserved) } return TRUE; } -#else -#ifdef HAVE_GCC_DESTRUCTOR -static void alc_init(void) __attribute__((constructor)); -static void alc_deinit(void) __attribute__((destructor)); #endif #endif |