aboutsummaryrefslogtreecommitdiff
path: root/src/crypt/encrypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypt/encrypt.c')
-rw-r--r--src/crypt/encrypt.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/crypt/encrypt.c b/src/crypt/encrypt.c
index 216abc91..02600b9d 100644
--- a/src/crypt/encrypt.c
+++ b/src/crypt/encrypt.c
@@ -50,3 +50,11 @@ void encrypt(char *block, int edflag)
for (j = 31; j >= 0; j--)
*p++ = b[i]>>j & 1;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif