Updated libs

This commit is contained in:
Alex
2022-12-15 02:58:29 +02:00
parent 741e1e908f
commit d82d725f11
6 changed files with 10 additions and 4 deletions

View File

@ -26,7 +26,7 @@ else ifeq ($(OSARCH), i686)
ASM_ARCH := elf32
endif
CFLAGS := -fPIC -mno-red-zone -I$(INCLUDE)
CFLAGS := -fPIC -I$(INCLUDE)
build: $(OBJECT_NAME)

View File

@ -96,7 +96,7 @@ extern "C"
* @param c the single character to print
*/
PRINTF_VISIBILITY
void putchar(char c);
int putchar(int c);
/**
* An implementation of the C standard's printf/vprintf