From 5e921bf59373d79d27c322ff86e8b5a37b151e45 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sun, 31 Jul 2022 16:02:10 +0100 Subject: Add magical feature codegen system, at long last --- src/alias.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/alias.h') diff --git a/src/alias.h b/src/alias.h index 3e417d9..bc125eb 100644 --- a/src/alias.h +++ b/src/alias.h @@ -17,8 +17,6 @@ #ifndef INC_ALIAS_H #define INC_ALIAS_H -#include - struct alias { struct alias *next; char name[32]; // TIL this has a hard limit :^) @@ -27,10 +25,8 @@ struct alias { extern struct alias **_alias_head; #define alias_head (*_alias_head) // act as a global -void alias_rm(const char *name); void alias_nuke(void); - -bool alias_init(void); +void alias_rm(const char *name); #endif -- cgit v1.2.3