diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6ab00b0..1b6f41b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,8 +16,8 @@ Looking for some simple tasks that need to get done for that sweet 'contributor' - Change `lib/lin/linshell.c` to use openpty() instead of forkpty() for BSD support - Fix address sanitizer for CMake DEBUG builds -- Change laikaT_getTime in `lib/src/core/ltask.c` to not use C11 features -- Implement more LAIKA_BOX_* VMs in `lib/include/core/lbox.h` +- Change laikaT_getTime in `lib/src/core/ltask.c` to not use C11 features and maybe review my linked list implementation :( +- Implement more LAIKA_BOX_* VMs in `lib/include/core/lbox.h`s - Import more WinAPI manually using the method listed below ## Bot: Windows API Imports Obfuscation diff --git a/lib/include/core/lmem.h b/lib/include/core/lmem.h index 29c1a14..f97c31e 100644 --- a/lib/include/core/lmem.h +++ b/lib/include/core/lmem.h @@ -26,6 +26,7 @@ type *name; \ int name##_COUNT; \ int name##_CAP + #define laikaM_initVector(name, startCap) \ name = NULL; \ name##_COUNT = 0; \