From d206b1651ac4dc4db1d9bbd172a81da0568b42e8 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 23 Jun 2020 09:38:53 +0200 Subject: [PATCH] randomconfig fix Signed-off-by: Denys Vlasenko --- include/platform.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/platform.h b/include/platform.h index 50365a31c..43bb391bd 100644 --- a/include/platform.h +++ b/include/platform.h @@ -30,6 +30,10 @@ # endif #endif +#if !__GNUC_PREREQ(5,0) +# define deprecated(msg) deprecated +#endif + #undef inline #if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L /* it's a keyword */ -- 2.25.1