diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-30 00:50:35 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-30 00:50:35 +0200 |
commit | 88a08db927629032d6d4c662e00f0dce2c112ce4 (patch) | |
tree | a280d1c66c221d823fc9c08697037fcd97d68db9 /src/pipac.c | |
parent | 2cabcc44858627f0951d9b702baf8120be7c5cf3 (diff) |
style: Add void to function without arguments
After run `make CC=clang` we found the following problems:
error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
Diffstat (limited to 'src/pipac.c')
-rw-r--r-- | src/pipac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipac.c b/src/pipac.c index a0031a5..b31b8b5 100644 --- a/src/pipac.c +++ b/src/pipac.c @@ -33,7 +33,7 @@ generate_gas_x86_64_linux(ast_node_t *func) } static void -print_usage() +print_usage(void) { fputs("pipac <filename.pipa>\n", stderr); } |