[READ-ONLY] Mirror of https://github.com/VibeDevelopers/atheme-contrib-modules.
0

Configure Feed

Select the types of activity you want to include in your feed.

os_tabletest.c: a few fixups

- Remove unnecessary forward declarations
- Apply atheme/atheme@e1df27b9fbecc2267baa

Aaron Jones (Jun 30, 2018, 7:01 PM UTC) cb351ccf fbc297f8

+9 -4
+9 -4
os_tabletest.c
··· 1 1 #include "atheme-compat.h" 2 2 3 - static void os_cmd_tabletest(sourceinfo_t *si, int parc, char *parv[]); 4 - 5 - command_t os_tabletest = { "TABLETEST", "Table test.", AC_NONE, 0, os_cmd_tabletest, { .path = "" } }; 6 - 7 3 static void 8 4 os_cmd_tabletest(sourceinfo_t *si, int parc, char *parv[]) 9 5 { ··· 30 26 31 27 atheme_object_unref(t); 32 28 } 29 + 30 + static command_t os_tabletest = { 31 + .name = "TABLETEST", 32 + .desc = N_("Table test."), 33 + .access = AC_NONE, 34 + .maxparc = 0, 35 + .cmd = &os_cmd_tabletest, 36 + .help = { .path = "" }, 37 + }; 33 38 34 39 static void 35 40 mod_init(module_t *const restrict m)