mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-15 02:07:42 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@42247 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
366 B
C
17 lines
366 B
C
#ifdef SHARED
|
|
#define __powitf2 __powitf2_shared
|
|
#endif
|
|
|
|
#define L_powitf2
|
|
#include "libgcc2.c"
|
|
|
|
#ifdef SHARED
|
|
#undef __powitf2
|
|
extern __typeof__ (__powitf2_shared) __powitf2_compat __attribute__((alias ("__powitf2_shared")));
|
|
|
|
#ifndef _WIN32
|
|
asm (".symver __powitf2_compat,__powitf2@GCC_4.0.0");
|
|
asm (".symver __powitf2_shared,__powitf2@@GCC_4.3.0");
|
|
#endif
|
|
#endif
|