summaryrefslogtreecommitdiffstats
path: root/doc/tools
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-08 15:09:39 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-09 10:11:58 -0500
commit81074900dfbf08326d735bb37d78c2dc8e3e8d2b (patch)
treeeb461773f6bfbed56f860bf03cedb535172ecb42 /doc/tools
parentlibbsp/powerpc/shared/tod/todcfg.c: Fix method prototype to eliminate warning (diff)
downloadrtems-81074900dfbf08326d735bb37d78c2dc8e3e8d2b.tar.bz2
avr/rtems/score/cpu.h: Fix macros to avoid warnings
Diffstat (limited to 'doc/tools')
-rw-r--r--doc/tools/bmenu/address.inl31
1 files changed, 0 insertions, 31 deletions
diff --git a/doc/tools/bmenu/address.inl b/doc/tools/bmenu/address.inl
deleted file mode 100644
index f47647f801..0000000000
--- a/doc/tools/bmenu/address.inl
+++ /dev/null
@@ -1,31 +0,0 @@
-/* inline/address.inl
- *
- * This include file contains the bodies of the routines
- * about addresses which are inlined.
- *
- * COPYRIGHT (c) 1988-2002.
- * On-Line Applications Research Corporation (OAR).
- * All rights reserved.
- */
-
-#ifndef __INLINE_ADDRESSES_inl
-#define __INLINE_ADDRESSES_inl
-
-#include <stddef.h>
-
-/*PAGE
- *
- * _Addresses_Add_offset
- *
- */
-
-STATIC INLINE void *_Addresses_Add_offset (
- void *base,
- size_t offset
-)
-{
- return (base + offset);
-}
-
-#endif
-/* end of include file */