From 40bff7788865b519b79b1ee7eb9851914010ffb4 Mon Sep 17 00:00:00 2001 From: turret Date: Sun, 19 Nov 2023 19:13:40 -0600 Subject: misc: minor bugs and comments sprinkle a little bit of commenting throughout the codebase. hopefully i dont regret what i've written - clone: bottom of stack is passed through - print: write newline at end of message - initcall: functions return void type very basic net startup. hopefully i dont regret implementing the websocket protocol myself in a language as holy as C. --- include/init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/init.h') diff --git a/include/init.h b/include/init.h index c9d8cba..79e60f1 100644 --- a/include/init.h +++ b/include/init.h @@ -1,7 +1,7 @@ #ifndef __INIT_H #define __INIT_H -typedef int (*initcall_t)(void); +typedef void (*initcall_t)(void); typedef initcall_t initcall_entry_t; #define __define_initcall(fn, id) \ -- cgit v1.2.3