]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Added missing extern declarations.
authorNiels Möller <nisse@lysator.liu.se>
Sun, 17 Jul 2011 15:03:49 +0000 (17:03 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Sun, 17 Jul 2011 15:03:49 +0000 (17:03 +0200)
Rev: nettle/ChangeLog:1.207
Rev: nettle/nettle-internal.h:1.4

ChangeLog
nettle-internal.h

index c8635db1a83f85a3ce176c0fcf38b35d8d0e9802..26d9e27046e75ef34467c7870ea376618f3ba4ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-07-17  Niels Möller  <nisse@lysator.liu.se>
+
+       * nettle-internal.h: Added missing extern declarations.
+
 2011-07-11  Niels Möller  <nisse@lysator.liu.se>
 
        * configure.ac: Changed version number to 2.3.
index bead0513b942bb4c94713f9e5cc09b59e2544a03..b7bbe248eaa9923512778cf760a521de042a02a7 100644 (file)
@@ -108,20 +108,20 @@ struct nettle_aead
   (nettle_hash_digest_func *) type##_##name##_digest,  \
 }
 
-const struct nettle_aead nettle_gcm_aes128;
-const struct nettle_aead nettle_gcm_aes192;
-const struct nettle_aead nettle_gcm_aes256;
+extern const struct nettle_aead nettle_gcm_aes128;
+extern const struct nettle_aead nettle_gcm_aes192;
+extern const struct nettle_aead nettle_gcm_aes256;
 
-const struct nettle_aead nettle_gcm_camellia128;
-const struct nettle_aead nettle_gcm_camellia192;
-const struct nettle_aead nettle_gcm_camellia256;
+extern const struct nettle_aead nettle_gcm_camellia128;
+extern const struct nettle_aead nettle_gcm_camellia192;
+extern const struct nettle_aead nettle_gcm_camellia256;
 
-const struct nettle_aead nettle_gcm_serpent128;
-const struct nettle_aead nettle_gcm_serpent192;
-const struct nettle_aead nettle_gcm_serpent256;
+extern const struct nettle_aead nettle_gcm_serpent128;
+extern const struct nettle_aead nettle_gcm_serpent192;
+extern const struct nettle_aead nettle_gcm_serpent256;
 
-const struct nettle_aead nettle_gcm_twofish128;
-const struct nettle_aead nettle_gcm_twofish192;
-const struct nettle_aead nettle_gcm_twofish256;
+extern const struct nettle_aead nettle_gcm_twofish128;
+extern const struct nettle_aead nettle_gcm_twofish192;
+extern const struct nettle_aead nettle_gcm_twofish256;
 
 #endif /* NETTLE_INTERNAL_H_INCLUDED */