(!1684) os.h: drop unnecessary guard on stdlib.h include

It's a standard C header, that's always present, so no extra guard needed.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-09-11 11:52:11 +02:00
parent c2e0309612
commit e305638cc9

View File

@ -50,9 +50,7 @@ SOFTWARE.
#include "misc.h"
#include <stdarg.h>
#include <stdint.h>
#if defined(HAVE_REALLOCARRAY)
#include <stdlib.h> /* for reallocarray */
#endif
#include <stdlib.h>
#include <string.h>
#ifdef MONOTONIC_CLOCK
#include <time.h>