mac: last attempt

This commit is contained in:
danyaberezun 2024-02-07 12:12:46 +01:00 committed by Roman Venediktov
parent 87339c7b73
commit 903164568c
3 changed files with 14 additions and 11 deletions

View file

@ -1,18 +1,20 @@
.section .text
.data
.global Lprintf
.extern Bprintf
.global Lprintf
.extern Bprintf
.global Lfprintf
.extern Bfprintf
.global Lfprintf
.extern Bfprintf
.global Lsprintf
.extern Bsprintf
.global Lsprintf
.extern Bsprintf
.global Lfailure
.extern failure
.global Lfailure
.extern failure
.extern cnt_percentage_sign
.extern cnt_percentage_sign
.text
Lprintf:
# save return address

View file

@ -3,6 +3,7 @@
#define _GNU_SOURCE 1
#include "runtime.h"
#include <regex.h>
#include "gc.h"
#include "runtime_common.h"