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>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1684>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-09-11 11:52:11 +02:00 committed by Marge Bot
parent d43d346541
commit 37446b70de

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>