diff options
Diffstat (limited to '')
-rw-r--r-- | src/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index f27b17f..f73d2b3 100644 --- a/src/config.h +++ b/src/config.h @@ -1,7 +1,8 @@ +#include <stdlib.h> struct compile_cmd_t { char *cmd; char *args; char *fileext; }; -void get_commands(); +size_t get_commands(struct compile_cmd_t ***ccmds_glob); |