From e5572abec2b88ce071e535f2a916dc32c7ee8f93 Mon Sep 17 00:00:00 2001 From: Darren Ldl Date: Tue, 24 Sep 2019 16:20:02 +1000 Subject: [PATCH 1/2] Removed include unistd.h --- simd_c/reedsolomon.h | 1 - 1 file changed, 1 deletion(-) diff --git a/simd_c/reedsolomon.h b/simd_c/reedsolomon.h index b28c586..dda48ee 100644 --- a/simd_c/reedsolomon.h +++ b/simd_c/reedsolomon.h @@ -21,7 +21,6 @@ * SOFTWARE */ -#include #include #if HAVE_CONFIG_H From 4c15ef7e75680481e2ab878191a24f1e67456509 Mon Sep 17 00:00:00 2001 From: Darren Ldl Date: Tue, 24 Sep 2019 16:26:35 +1000 Subject: [PATCH 2/2] Removed nonnull --- simd_c/reedsolomon.h | 1 - 1 file changed, 1 deletion(-) diff --git a/simd_c/reedsolomon.h b/simd_c/reedsolomon.h index dda48ee..4bd9ec0 100644 --- a/simd_c/reedsolomon.h +++ b/simd_c/reedsolomon.h @@ -36,7 +36,6 @@ const size_t len #define PROTO(name) \ PROTO_RETURN \ - __attribute__((nonnull)) \ name (PROTO_ARGS) PROTO(reedsolomon_gal_mul);