Replace #pragma once with #ifndef #define #endif logic because #pragma once does not work cleanly on OSX
This commit is contained in:
@@ -3,6 +3,9 @@
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef _CPU_SHA256_H
|
||||
#define _CPU_SHA256_H
|
||||
|
||||
void sha256_64 (uint block[16], uint digest[8]);
|
||||
|
||||
#endif // _CPU_SHA256_H
|
||||
|
||||
Reference in New Issue
Block a user