diff options
Diffstat (limited to 'gen_inl.c')
-rw-r--r-- | gen_inl.c | 39 |
1 files changed, 25 insertions, 14 deletions
@@ -8,19 +8,29 @@ 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/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 *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", + "source/kit/xml.h" }; char *IMPL[] = { "source/kit/allocator.c", "source/kit/atomic.win32.c", @@ -35,7 +45,8 @@ char *IMPL[] = { "source/kit/allocator.c", "source/kit/secure_random.c", "source/kit/sha256.c", "source/kit/shared_memory.posix.c", - "source/kit/shared_memory.win32.c" }; + "source/kit/shared_memory.win32.c", + "source/kit/xml.c" }; char *repeat(int n, char c) { static char buf[200]; |