From b64e6efd818227a3611af5749109eaeaa33a4fc6 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 17 Feb 2015 08:24:20 -0600 Subject: Add support for the restrict keyword --- nuttx/include/nuttx/compiler.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nuttx/include/nuttx/compiler.h b/nuttx/include/nuttx/compiler.h index 0575a570e..2a55adf37 100644 --- a/nuttx/include/nuttx/compiler.h +++ b/nuttx/include/nuttx/compiler.h @@ -1,7 +1,7 @@ /**************************************************************************** * include/nuttx/compiler.h * - * Copyright (C) 2007-2009, 2012-2013 Gregory Nutt. All rights reserved. + * Copyright (C) 2007-2009, 2012-2013, 2015 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -243,6 +243,7 @@ # define weak_alias(name, aliasname) # define weak_function # define weak_const_function +# define restrict /* REVISIT */ /* SDCC does not support the noreturn or packed attributes */ @@ -355,6 +356,7 @@ # define weak_alias(name, aliasname) # define weak_function # define weak_const_function +# define restrict /* The Zilog compiler does not support the noreturn, packed, naked attributes */ @@ -446,6 +448,7 @@ # define weak_alias(name, aliasname) # define weak_function # define weak_const_function +# define restrict # define noreturn_function # define farcall_function # define packed_struct -- cgit v1.2.3