Fix header guards.

This commit is contained in:
2021-10-13 03:30:02 +01:00
parent 134709f90f
commit ca65d12c7e
8 changed files with 40 additions and 10 deletions

5
simd.h
View File

@@ -16,6 +16,9 @@
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef AARU_CHECKSUMS_NATIVE_SIMD_H
#define AARU_CHECKSUMS_NATIVE_SIMD_H
#ifdef _MSC_VER
#define ALIGNED_(n) __declspec(align(n))
#else
@@ -116,3 +119,5 @@ AARU_EXPORT int have_arm_crypto(void);
#endif // _MSC_VER
#endif // __aarch64__ || _M_ARM64 || __arm__ || _M_ARM
#endif // AARU_CHECKSUMS_NATIVE_CRC32_SIMD_H