README fixes, fix a bug in the header stdlib checking

This commit is contained in:
2026-01-10 22:03:14 -05:00
parent c526bb1ba3
commit cb9af93e0b
2 changed files with 4 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
#ifndef _AKERR_H_
#define _AKERR_H_
#if defined(AKERR_USE_STDLIB) && AKERR_USE_STDLIB == 1
#if (defined(AKERR_USE_STDLIB) && AKERR_USE_STDLIB == 1) || (!defined(AKERR_USE_STDLIB))
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>