Author | Jamozed <[email protected]> |
Date | 2020-08-29 12:56:24 |
Commit | 3bb03255e3b32456d618aca7e80c3a60a83a97a5 |
Parent | 40437ba6c47de4c4528d39a3efff523ff9ac0142 |
crc32: Move globals above declarations
Diffstat
M | src/crc32.c | | | 4 | ++-- |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crc32.c b/src/crc32.c index 9a145cb..0937f2f 100644 --- a/src/crc32.c +++ b/src/crc32.c @@ -45,13 +45,13 @@ static struct lop lops[] = { { NULL, 0, 0 } }; +static const uint32_t CRC32[]; + static inline int crc32(const char *file); static void hlp(void); static void ver(void); -static const uint32_t CRC32[]; - int main(int ac, char *av[]) { A0 = av[0]; struct opt opt = OPTGET_INIT; opt.str = ""; opt.lops = lops; for (int o; (o = optget(&opt, av, 1)) != -1;) switch (o) {