diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-01-11 22:29:53 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-01-11 22:29:53 +0000 |
commit | 0bec4f557a96e1a40437cf5af20cc78a5eec8a63 (patch) | |
tree | c1e05ec804c43aa5a8f5f21b0ed02d0587d29563 /unsorted/StaticParserGlue.c | |
parent | aec1b8dddc68ecb8288ec6132932e4c7b4bca09f (diff) | |
download | MWCC-0bec4f557a96e1a40437cf5af20cc78a5eec8a63.tar.gz MWCC-0bec4f557a96e1a40437cf5af20cc78a5eec8a63.zip |
getting closer
Diffstat (limited to '')
-rw-r--r-- | unsorted/StaticParserGlue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unsorted/StaticParserGlue.c b/unsorted/StaticParserGlue.c index c2e130d..7a44487 100644 --- a/unsorted/StaticParserGlue.c +++ b/unsorted/StaticParserGlue.c @@ -18,12 +18,12 @@ static ParserPluginCallbacks pr_cb = { Parser_SupportsPanels }; -int RegisterStaticParserPlugins() { +int RegisterStaticParserPlugins(void) { return RegisterStaticParserPlugin(&cb, &pr_cb); } #include "ParserErrors.r" -int RegisterStaticParserResources() { +int RegisterStaticParserResources(void) { return RegisterResource("Parser Strings", 12010, STR12010); } |