From: Florian Franzmann <bwlf@bandrate.org>
Date: Sat, 5 Sep 2020 14:33:39 +0000 (+0200)
Subject: Cleanup: Add missing 'void'
X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/hmcfgusb/commitdiff_plain/5aa2bb3eb67f181638ac7c0243beba7974e2b0b0

Cleanup: Add missing 'void'
---

diff --git a/aes.h b/aes.h
index 25721c8..1b08590 100644
--- a/aes.h
+++ b/aes.h
@@ -114,10 +114,10 @@ int aes_decrypt_ccm(const BYTE ciphertext[],             // IN  - Ciphertext, th
 ///////////////////
 // Test functions
 ///////////////////
-int aes_test();
-int aes_ecb_test();
-int aes_cbc_test();
-int aes_ctr_test();
-int aes_ccm_test();
+int aes_test(void);
+int aes_ecb_test(void);
+int aes_cbc_test(void);
+int aes_ctr_test(void);
+int aes_ccm_test(void);
 
 #endif   // AES_H