Fix more compilation errors

This commit is contained in:
2025-11-21 15:12:32 +01:00
parent 93ccb5d6a1
commit aab1b8e7b8
10 changed files with 1892 additions and 1763 deletions
+4 -4
View File
@@ -56,13 +56,13 @@ header = Amalgamator()
header.append_text(desc)
header.append_file("src/includes.h")
header.append_file("src/basic.h")
header.append_file("src/parse.h")
header.append_file("src/thread.h")
header.append_file("src/secure_context.h")
header.append_file("src/socket.h")
header.append_file("src/thread.h")
header.append_file("src/byte_queue.h")
header.append_file("src/cert.h")
header.append_file("src/client.h")
header.append_file("src/parse.h")
header.append_file("src/server.h")
header.append_text(license)
header.save("chttp.h")
@@ -74,13 +74,13 @@ source.append_text("#ifndef HTTP_DONT_INCLUDE\n")
source.append_text('#include "chttp.h"\n')
source.append_text("#endif\n")
source.append_file("src/basic.c")
source.append_file("src/parse.c")
source.append_file("src/thread.c")
source.append_file("src/secure_context.c")
source.append_file("src/socket.c")
source.append_file("src/thread.c")
source.append_file("src/byte_queue.c")
source.append_file("src/cert.c")
source.append_file("src/client.c")
source.append_file("src/parse.c")
source.append_file("src/server.c")
header.append_text(license)
source.save("chttp.c")