cryptutils

Cryptographic Software Utilities
git clone http://git.omkov.net/cryptutils
Log | Tree | Refs | README | LICENCE | Download

AuthorJamozed <[email protected]>
Date2020-08-29 12:56:24
Commit3bb03255e3b32456d618aca7e80c3a60a83a97a5
Parent40437ba6c47de4c4528d39a3efff523ff9ac0142

crc32: Move globals above declarations

Diffstat

M src/crc32.c | 5 +++--

1 files changed, 3 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) {