1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

LibC: Don't define ALWAYS_INLINE if it's already defined.

This makes building GCC a bit quieter.
This commit is contained in:
Andreas Kling 2019-05-28 21:04:47 +02:00
parent f6680d58db
commit c1f8df5f86

View file

@ -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" {