From b48327d357e0818d1a6ae2a064cfa7d1567e1242 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 5 Dec 2021 15:17:44 -0800 Subject: feat(huge): huge refactor (in progress). Commented out libc includes to uncover all explicit dependencies. A large fraction has now been ported over (no testing). I did not port over the command line tools, such as the rc shell. These will be done independently - as of now I just want the library to stand independent. Compilation currently fails due to the lack of math functions. --- src/base/error/errorf.c | 4 ++-- src/base/error/exits.c | 4 ++-- src/base/error/panicf.c | 8 ++++---- src/base/error/verrorf.c | 6 +++--- src/base/error/vpanicf.c | 8 ++++---- 5 files changed, 15 insertions(+), 15 deletions(-) (limited to 'src/base/error') diff --git a/src/base/error/errorf.c b/src/base/error/errorf.c index 193dd9d..ed4c660 100644 --- a/src/base/error/errorf.c +++ b/src/base/error/errorf.c @@ -6,8 +6,8 @@ errorf(byte* fmt, ...) va_list args; va_start(args, fmt); - fprintf(stderr, "error: "); - vfprintf(stderr, fmt, args); + fmt·fprint(sys·Stderr, "error: "); + fmt·fprint(sys·Stderr, fmt, args); va_end(args); } diff --git a/src/base/error/exits.c b/src/base/error/exits.c index 7fd83c5..3be9625 100644 --- a/src/base/error/exits.c +++ b/src/base/error/exits.c @@ -4,8 +4,8 @@ void exits(char *s) { if(s == nil || *s == 0) - exit(0); + rt·exit(0); //fputs(s, stderr); - exit(1); + rt·exit(1); } diff --git a/src/base/error/panicf.c b/src/base/error/panicf.c index d698576..f1ed126 100644 --- a/src/base/error/panicf.c +++ b/src/base/error/panicf.c @@ -6,11 +6,11 @@ panicf(byte* fmt, ...) va_list args; va_start(args, fmt); - printf("panic: "); - vprintf(fmt, args); - printf("\n"); + fmt·fprint(sys·Stderr,"panic: "); + fmt·vfprint(sys·Stderr,fmt, args); + fmt·fprint(sys·Stderr,"\n"); va_end(args); - exit(1); + rt·exit(1); } diff --git a/src/base/error/verrorf.c b/src/base/error/verrorf.c index 15af064..7acd690 100644 --- a/src/base/error/verrorf.c +++ b/src/base/error/verrorf.c @@ -3,7 +3,7 @@ void verrorf(byte* fmt, va_list args) { - printf("error: "); - vprintf(fmt, args); - printf("\n"); + fmt·fprint(sys·Stderr,"error: "); + fmt·vfprint(sys·Stderr,fmt, args); + fmt·fprint(sys·Stderr,"\n"); } diff --git a/src/base/error/vpanicf.c b/src/base/error/vpanicf.c index bea97ac..84df334 100644 --- a/src/base/error/vpanicf.c +++ b/src/base/error/vpanicf.c @@ -3,9 +3,9 @@ void vpanicf(byte* fmt, va_list args) { - printf("panic: "); - vprintf(fmt, args); - printf("\n"); + fmt·fprint(sys·Stderr, "panic: "); + fmt·vfprint(sys·Stderr, fmt, args); + fmt·fprint(sys·Stderr, "\n"); - exit(1); + rt·exit(1); } -- cgit v1.2.1