add new platform headers to simplify including windows/posix headers

This commit is contained in:
brainiac
2025-12-18 00:23:57 -08:00
committed by Alex
parent ab1edbf537
commit 360e01d824
7 changed files with 63 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#ifndef _WINDOWS
#include <sys/time.h>
#include <netinet/in.h>
#endif // !_WINDOWS
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#ifndef _WINDOWS
#include "common/unix.h"
#include <pthread.h>
#endif // !_WINDOWS