chiark / gitweb /
need stddef.h
[chiark-tcl.git] / crypto / algtables.c
index 8d7b0a27215a412ac71fd4100167e16ce2a5991c..24ebba7c5e1cd249740f294973a6627cbb14fcb9 100644 (file)
@@ -2,6 +2,7 @@
  */
 
 #include <stdint.h>
+#include <stddef.h>
 #include <netinet/in.h>
 
 #include "hbytes.h"
@@ -39,7 +40,6 @@ const BlockCipherAlgInfo blockcipheralginfos[]= {
 #define ALIAS(alias,name,NAME)                                 \
   { #alias, NAME##_BLOCK_SIZE, sizeof(struct name##_ctx),      \
        NAME##_MIN_KEY_SIZE, NAME##_MAX_KEY_SIZE,               \
-    0,                                                         \
     { alg_##name##_makekey, alg_##name##_encr },               \
     { alg_##name##_makekey, alg_##name##_decr }                        \
   },