summaryrefslogtreecommitdiff
path: root/cpukit/include/rtems/score/assert.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-10-06 07:39:44 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-10-10 14:00:37 +0200
commitd7a48e1b259316533a5c775e27934760e1fcd313 (patch)
treeba60f54f4647a8d866395450183ef2551bf9d46d /cpukit/include/rtems/score/assert.h
parente1a0e0c30829a0da4174085ee5109fba337dba11 (diff)
rtems: Improve RTEMS_NO_RETURN attribute
Provide RTEMS_NO_RETURN also in case RTEMS_DEBUG is defined to prevent errors like this: error: no return statement in function returning non-void [-Werror=return-type] Use C11 and C++11 standard means to declare a no-return function. Close #4122.
Diffstat (limited to 'cpukit/include/rtems/score/assert.h')
-rw-r--r--cpukit/include/rtems/score/assert.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/cpukit/include/rtems/score/assert.h b/cpukit/include/rtems/score/assert.h
index 6c68d9d28d..649d59b7e9 100644
--- a/cpukit/include/rtems/score/assert.h
+++ b/cpukit/include/rtems/score/assert.h
@@ -78,9 +78,6 @@ extern "C" {
#if !defined( RTEMS_SCHEDSIM )
/* normal build is newlib. */
- void __assert_func(const char *, int, const char *, const char *)
- RTEMS_NO_RETURN;
-
#define _Assert( _e ) \
( ( _e ) ? \
( void ) 0 : \