Compare commits

..

3 Commits

Author SHA1 Message Date
IonutParau
faa67f417d big mistake 2025-07-12 00:02:58 +02:00
IonutParau
a5844c8728 fixed a header not being imported on Windows 2025-07-11 23:55:37 +02:00
IonutParau
6c96efe3cb plans 2025-07-11 23:36:53 +02:00
3 changed files with 2 additions and 1 deletions

View File

@ -42,3 +42,4 @@
# Internal changes # Internal changes
- use dynamic arrays for signals (and maybe components), but still keep the maximums to prevent memory hogging - use dynamic arrays for signals (and maybe components), but still keep the maximums to prevent memory hogging
- setup an extensive testing system to find bugs easier

View File

@ -18,7 +18,6 @@
typedef long nn_intptr_t; typedef long nn_intptr_t;
typedef unsigned long nn_size_t; typedef unsigned long nn_size_t;
#else #else
#error "fuck you"
typedef long long nn_intptr_t; typedef long long nn_intptr_t;
typedef unsigned long long nn_size_t; typedef unsigned long long nn_size_t;
#endif #endif

View File

@ -5,6 +5,7 @@
#ifdef NN_POSIX #ifdef NN_POSIX
#include <time.h> #include <time.h>
#else #else
#include <time.h>
#include <windows.h> #include <windows.h>
#endif #endif