diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-07-31 16:02:10 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-08-10 22:40:52 +0100 |
commit | 5e921bf59373d79d27c322ff86e8b5a37b151e45 (patch) | |
tree | 4d40e39543b085ce4c8cb9b1a7b3c0108de680c0 /src/alias.h | |
parent | c8d7588251fd4fe63ac6afe2a90ca7066c786609 (diff) |
Add magical feature codegen system, at long last
Diffstat (limited to 'src/alias.h')
-rw-r--r-- | src/alias.h | 6 |
1 files changed, 1 insertions, 5 deletions
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 <stdbool.h> - 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 |