mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
17 lines
355 B
C
17 lines
355 B
C
#ifdef SHARED
|
|
#define __multc3 __multc3_shared
|
|
#endif
|
|
|
|
#define L_multc3
|
|
#include "libgcc2.c"
|
|
|
|
#ifdef SHARED
|
|
#undef __multc3
|
|
extern __typeof__ (__multc3_shared) __multc3_compat __attribute__((alias ("__multc3_shared")));
|
|
|
|
#ifndef _WIN32
|
|
asm (".symver __multc3_compat,__multc3@GCC_4.0.0");
|
|
asm (".symver __multc3_shared,__multc3@@GCC_4.3.0");
|
|
#endif
|
|
#endif
|