chiark / gitweb /
initial import and build-faff, wip
[chiark-tcl.git] / crypto / algtables.c
index 8f796ce2333b726053f7df0bb928201e863c04b9..bb111dea4e2cc958e778fba123b952d886c8b61d 100644 (file)
@@ -2,6 +2,7 @@
  */
 
 #include <stdint.h>
+#include <stddef.h>
 #include <netinet/in.h>
 
 #include "hbytes.h"
     name##_set_key(sch, keylen, key);                                        \
   }                                                                          \
   static void alg_##name##_encr(const void *sch, const void *in, void *out) { \
-    ##name##_encrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                \
+    name##_encrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                  \
   }                                                                          \
   static void alg_##name##_decr(const void *sch, const void *in, void *out) { \
-    ##name##_decrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                \
+    name##_decrypt((void*)sch, NAME##_BLOCK_SIZE, out, in);                  \
   }
   NETTLE_BLOCKCIPHERS
 #undef DO