summaryrefslogtreecommitdiff
path: root/gen_inl.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2023-09-15 15:46:59 +0200
committerMitya Selivanov <automainint@guattari.tech>2023-09-15 15:46:59 +0200
commitbdcfa4e239d2c913c7045d0aa835ddd5a47e5436 (patch)
tree9751af52afbead783bd57b9d4eeda74b7906c266 /gen_inl.c
parent0354e4c4393e373f38d7e47103845680c1210104 (diff)
downloadkit-bdcfa4e239d2c913c7045d0aa835ddd5a47e5436.zip
Update single-header
Diffstat (limited to 'gen_inl.c')
-rw-r--r--gen_inl.c41
1 files changed, 16 insertions, 25 deletions
diff --git a/gen_inl.c b/gen_inl.c
index bf9eda8..31af196 100644
--- a/gen_inl.c
+++ b/gen_inl.c
@@ -8,35 +8,24 @@ exit
#include <stdlib.h>
#include <string.h>
-char *HEADERS[] = { "source/kit/types.h",
- "source/kit/status.h",
- "source/kit/allocator.h",
- "source/kit/time.h",
- "source/kit/atomic.h",
- "source/kit/threads.h",
- "source/kit/shared_memory.h",
- "source/kit/array_ref.h",
- "source/kit/dynamic_array.h",
- "source/kit/string_ref.h",
- "source/kit/string_builder.h",
- "source/kit/lower_bound.h",
- "source/kit/move_back.h",
- "source/kit/bigint.h",
- "source/kit/input_stream.h",
- "source/kit/input_buffer.h",
- "source/kit/async_function.h",
- "source/kit/file.h",
- "source/kit/mersenne_twister_64.h",
- "source/kit/secure_random.h",
- "source/kit/sha256.h",
- "source/kit/sockets.h" };
+char *HEADERS[] = {
+ "source/kit/types.h", "source/kit/status.h",
+ "source/kit/allocator.h", "source/kit/time.h",
+ "source/kit/atomic.h", "source/kit/threads.h",
+ "source/kit/array_ref.h", "source/kit/dynamic_array.h",
+ "source/kit/string_ref.h", "source/kit/string_builder.h",
+ "source/kit/lower_bound.h", "source/kit/move_back.h",
+ "source/kit/bigint.h", "source/kit/input_stream.h",
+ "source/kit/input_buffer.h", "source/kit/async_function.h",
+ "source/kit/file.h", "source/kit/mersenne_twister_64.h",
+ "source/kit/secure_random.h", "source/kit/sha256.h",
+ "source/kit/sockets.h", "source/kit/shared_memory.h"
+};
char *IMPL[] = { "source/kit/allocator.c",
"source/kit/atomic.win32.c",
"source/kit/threads.posix.c",
"source/kit/threads.win32.c",
- "source/kit/shared_memory.posix.c",
- "source/kit/shared_memory.win32.c",
"source/kit/dynamic_array.c",
"source/kit/string_builder.c",
"source/kit/input_stream.c",
@@ -44,7 +33,9 @@ char *IMPL[] = { "source/kit/allocator.c",
"source/kit/file.c",
"source/kit/mersenne_twister_64.c",
"source/kit/secure_random.c",
- "source/kit/sha256.c" };
+ "source/kit/sha256.c",
+ "source/kit/shared_memory.posix.c",
+ "source/kit/shared_memory.win32.c" };
char *repeat(int n, char c) {
static char buf[200];