Skip to content

Commit

Permalink
[lib][debug] remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
travisg committed Feb 11, 2024
1 parent 7e11c3b commit 23cff5b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions lib/debug/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,6 @@ void assert_fail(const char* file, int line, const char* expression) {

#if !DISABLE_DEBUG_OUTPUT

static int __panic_stdio_fgetc(void *ctx) {
char c;
int err;

err = platform_pgetc(&c, false);
if (err < 0)
return err;
return (unsigned char)c;
}

static ssize_t __panic_stdio_read(io_handle_t *io, char *s, size_t len) {
if (len == 0)
return 0;
Expand Down

0 comments on commit 23cff5b

Please sign in to comment.