From a125e4941519c614671ef193bb4a79c52e4939b6 Mon Sep 17 00:00:00 2001 From: Timothy Stack Date: Tue, 14 Sep 2021 21:28:15 -0700 Subject: [PATCH] [build] fix ape build --- src/tailer/sha-256.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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))))