diff options
author | EuAndreh <eu@euandre.org> | 2021-08-24 18:03:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-24 18:03:18 -0300 |
commit | 1c1bbf651948c47f80018c76c9af87724e09539f (patch) | |
tree | 71b360cc3fe9a34d3714f6de1a0108daf5be0d45 /src/lib.h | |
parent | src/lib.c: Move unit_tests_gistatic to the end of the file (diff) | |
download | gistatic-1c1bbf651948c47f80018c76c9af87724e09539f.tar.gz gistatic-1c1bbf651948c47f80018c76c9af87724e09539f.tar.xz |
src/lib.{c,h}: Make args to gistatic_main() const
Diffstat (limited to 'src/lib.h')
-rw-r--r-- | src/lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #ifndef GISTATIC_GISTATIC_H #define GISTATIC_GISTATIC_H -int gistatic_main(int argc, char *argv[]); +int gistatic_main(const int argc, char *const argv[]); #ifdef TEST void unit_tests_gistatic(void); |