[build] fix ape build

This commit is contained in:
Timothy Stack 2021-09-14 21:28:15 -07:00
parent aae83a6a10
commit a125e49415
1 changed files with 2 additions and 1 deletions

View File

@ -16,9 +16,10 @@
#ifndef __COSMOPOLITAN__
#include <stdlib.h>
#include <memory.h>
#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))))