From c1f8df5f865f6a931ca11c6d15f438d9aeccb182 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 28 May 2019 21:04:47 +0200 Subject: [PATCH] LibC: Don't define ALWAYS_INLINE if it's already defined. This makes building GCC a bit quieter. --- LibC/sys/cdefs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LibC/sys/cdefs.h b/LibC/sys/cdefs.h index 8f05740393..1b6b52cca2 100644 --- a/LibC/sys/cdefs.h +++ b/LibC/sys/cdefs.h @@ -2,7 +2,9 @@ #define _POSIX_VERSION 200809L +#ifndef ALWAYS_INLINE #define ALWAYS_INLINE inline __attribute__((always_inline)) +#endif #ifdef __cplusplus # define __BEGIN_DECLS extern "C" {