X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ab494c1e3eafc27c84c8cf0eb5e5ad8ef37389bc..364ec046e6da20abac51adc7c04e96ebb5814f5c:/stglibs/crypto.lib/ag_md5.c

diff --git a/stglibs/crypto.lib/ag_md5.c b/stglibs/crypto.lib/ag_md5.c
index fef284a5..a638c189 100644
--- a/stglibs/crypto.lib/ag_md5.c
+++ b/stglibs/crypto.lib/ag_md5.c
@@ -1,4 +1,3 @@
-
 #ifdef WIN32
 #include <process.h>
 #include <windows.h>
@@ -11,8 +10,8 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include "ag_md5.h"
 
+#include "stg/ag_md5.h"
 
 #define F1(x, y, z) (z ^ (x & (y ^ z)))
 #define F2(x, y, z) F1(z, x, y)
@@ -22,7 +21,6 @@
 #define MD5STEP(f, w, x, y, z, data, s) \
     ( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )
 
-
 int i64c(int i)
 {
     if (i <= 0)