From 76f53b40f4f80fc692f90d3397516ae96872d966 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 1 Feb 2019 16:03:21 +0100 Subject: LibC: Add some things needed to build GNU bc. This patch adds vprintf(), sig_atomic_t, random() and strdup(). bc doesn't build yet, but it will. --- LibC/signal.h | 1 + 1 file changed, 1 insertion(+) (limited to 'LibC/signal.h') diff --git a/LibC/signal.h b/LibC/signal.h index cb3b7599af..f13cf62c27 100644 --- a/LibC/signal.h +++ b/LibC/signal.h @@ -10,6 +10,7 @@ typedef __sighandler_t sighandler_t; typedef uint32_t sigset_t; typedef void siginfo_t; +typedef uint32_t sig_atomic_t; struct sigaction { union { -- cgit v1.2.3