blob: db8ba13614ad7d476fd2bfc4451ed8d04bc76234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
diff --git a/aes_siv.c b/aes_siv.c
index 00a510d..2b31ed3 100644
--- a/aes_siv.c
+++ b/aes_siv.c
@@ -5,7 +5,7 @@
#define _POSIX_C_SOURCE 200112L
#define _ISOC99_SOURCE 1
-#include "config.h"
+#include "aes_siv_config.h"
#include "aes_siv.h"
#include <assert.h>
diff --git a/bench.c b/bench.c
index ea5a29b..61cb485 100644
--- a/bench.c
+++ b/bench.c
@@ -2,7 +2,7 @@
* SPDX-License-Identifier: Apache-2.0
*/
-#include "config.h"
+#include "aes_siv_config.h"
#include "aes_siv.h"
#define _POSIX_C_SOURCE 200112L
diff --git a/tests.c b/tests.c
index 996cc58..9ff9637 100644
--- a/tests.c
+++ b/tests.c
@@ -5,7 +5,7 @@
#define _POSIX_C_SOURCE 200112L
#define _ISOC99_SOURCE 1
-#include "config.h"
+#include "aes_siv_config.h"
#include "aes_siv.h"
#undef NDEBUG
|