diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-25 10:50:28 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-25 10:50:28 +0100 |
| commit | 5e058cf1a0f66082ecb6f255d2b346c0dfa441c9 (patch) | |
| tree | d2ebf98e79e350fac4f2cef7d5db75b265aef6ef /libasm.s | |
| parent | a2347a0780a90d9f7add3f63a9752229262eedc2 (diff) | |
| download | libasm-5e058cf1a0f66082ecb6f255d2b346c0dfa441c9.tar.gz libasm-5e058cf1a0f66082ecb6f255d2b346c0dfa441c9.tar.bz2 libasm-5e058cf1a0f66082ecb6f255d2b346c0dfa441c9.zip | |
Fixing compilation on Linux by removing wrt ..plt in extern declaration
Diffstat (limited to 'libasm.s')
| -rw-r--r-- | libasm.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libasm.s b/libasm.s new file mode 100644 index 0000000..78b5736 --- /dev/null +++ b/libasm.s @@ -0,0 +1,18 @@ +; ############################################################################ ; +; ; +; ::: :::::::: ; +; libasm.s :+: :+: :+: ; +; +:+ +:+ +:+ ; +; By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ ; +; +#+#+#+#+#+ +#+ ; +; Created: 2021/02/25 10:38:57 by cacharle #+# #+# ; +; Updated: 2021/02/25 10:45:55 by cacharle ### ########.fr ; +; ; +; ############################################################################ ; + + +%ifdef __LINUX__ + %define M_EXTERN_CALL_SUFFIX wrt ..plt +%else + %define M_EXTERN_CALL_SUFFIX +%endif |
