summaryrefslogtreecommitdiff
path: root/firmware/2lib/2sha512.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/2lib/2sha512.c')
-rw-r--r--firmware/2lib/2sha512.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/2lib/2sha512.c b/firmware/2lib/2sha512.c
index e1f2601f..ee78ec2b 100644
--- a/firmware/2lib/2sha512.c
+++ b/firmware/2lib/2sha512.c
@@ -35,9 +35,9 @@
* SUCH DAMAGE.
*/
-#include "2sysincludes.h"
#include "2common.h"
#include "2sha.h"
+#include "2sysincludes.h"
#define SHFR(x, n) (x >> n)
#define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n)))