Replace #pragma once with #ifndef #define #endif logic because #pragma once does not work cleanly on OSX
This commit is contained in:
+3
-1
@@ -3,10 +3,12 @@
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef _CPU_CRC32_H
|
||||
#define _CPU_CRC32_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
||||
void cpu_crc32 (const char *filename, u8 keytab[64]);
|
||||
|
||||
#endif // _CPU_CRC32_H
|
||||
|
||||
Reference in New Issue
Block a user