diff --git a/src/tailer/sha-256.c b/src/tailer/sha-256.c index 82427bc1..8e390f83 100644 --- a/src/tailer/sha-256.c +++ b/src/tailer/sha-256.c @@ -16,9 +16,10 @@ #ifndef __COSMOPOLITAN__ #include #include -#include "sha-256.h" #endif +#include "sha-256.h" + /****************************** MACROS ******************************/ #define ROTLEFT(a,b) (((a) << (b)) | ((a) >> (32-(b)))) #define ROTRIGHT(a,b) (((a) >> (b)) | ((a) << (32-(b))))