From e38105fbcd153b274328fb849ed9cfd213789378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Mon, 14 Jan 2002 17:03:04 +0100 Subject: [PATCH] Use const for all tables. Rev: src/nettle/desCode.h:1.2 --- desCode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desCode.h b/desCode.h index d27df606..52469521 100644 --- a/desCode.h +++ b/desCode.h @@ -9,8 +9,8 @@ #include "des.h" -extern uint32_t des_keymap[]; -extern uint32_t des_bigmap[]; +extern const uint32_t des_keymap[]; +extern const uint32_t des_bigmap[]; /* optional customization: * the idea here is to alter the code so it will still run correctly -- GitLab