diff options
author | turret <turret@duck.com> | 2023-11-19 19:13:40 -0600 |
---|---|---|
committer | turret <turret@duck.com> | 2023-11-19 19:13:40 -0600 |
commit | 40bff7788865b519b79b1ee7eb9851914010ffb4 (patch) | |
tree | b11af475d4eb933acb2d610c555d6715f76def4e /include/init.h | |
parent | a8b2282eb88f24c3c5f461e1557fa2cf76ebc251 (diff) | |
download | discord-bot-skeleton-40bff7788865b519b79b1ee7eb9851914010ffb4.tar.gz discord-bot-skeleton-40bff7788865b519b79b1ee7eb9851914010ffb4.tar.bz2 discord-bot-skeleton-40bff7788865b519b79b1ee7eb9851914010ffb4.zip |
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.
Diffstat (limited to 'include/init.h')
-rw-r--r-- | include/init.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) \ |