From e248dfcebf3f1195880fc1261cf58c66d7556355 Mon Sep 17 00:00:00 2001 From: Jessica Clarke Date: Tue, 25 Jul 2023 01:08:41 +0100 Subject: [PATCH] sys/_stdint.h: Officially deprecate vaddr_t at long last --- sys/sys/_stdint.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/sys/_stdint.h b/sys/sys/_stdint.h index 1d2b5d5bf294..9d07f02de097 100644 --- a/sys/sys/_stdint.h +++ b/sys/sys/_stdint.h @@ -135,6 +135,7 @@ typedef __ptraddr_t ptraddr_t; #endif #ifndef _VADDR_T_DECLARED +__attribute__((__deprecated__("use ptraddr_t instead"))) typedef ptraddr_t vaddr_t; #define _VADDR_T_DECLARED #endif