summaryrefslogtreecommitdiffstats
path: root/doc/tools/bmenu/address.inl
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-12-07 02:58:44 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-12-07 02:58:44 +0000
commit8272b10998575afa250d28c3d390b4f285756be7 (patch)
tree1c5dcdb2d99760ca6791c706eda54bc46d114853 /doc/tools/bmenu/address.inl
parent2007-12-06 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-8272b10998575afa250d28c3d390b4f285756be7.tar.bz2
Remove unused functions.
Diffstat (limited to '')
-rw-r--r--doc/tools/bmenu/address.inl75
1 files changed, 0 insertions, 75 deletions
diff --git a/doc/tools/bmenu/address.inl b/doc/tools/bmenu/address.inl
index 0dff9e3e24..6b079d7f9d 100644
--- a/doc/tools/bmenu/address.inl
+++ b/doc/tools/bmenu/address.inl
@@ -14,7 +14,6 @@
#define __INLINE_ADDRESSES_inl
#include <stddef.h>
-#include <stdint.h>
/*PAGE
*
@@ -30,79 +29,5 @@ STATIC INLINE void *_Addresses_Add_offset (
return (base + offset);
}
-/*PAGE
- *
- * _Addresses_Subtract_offset
- *
- */
-
-STATIC INLINE void *_Addresses_Subtract_offset (
- void *base,
- size_t offset
-)
-{
- return (base - offset);
-}
-
-/*PAGE
- *
- * _Addresses_Add
- *
- * NOTE: The cast of an address to an unsigned32 makes this code
- * dependent on an addresses being thirty two bits.
- */
-
-STATIC INLINE void *_Addresses_Add (
- void *left,
- void *right
-)
-{
- return (left + (ptrdiff_t) right);
-}
-
-/*PAGE
- *
- * _Addresses_Subtract
- *
- * NOTE: The cast of an address to an unsigned32 makes this code
- * dependent on an addresses being thirty two bits.
- */
-
-STATIC INLINE ptrdiff_t _Addresses_Subtract (
- void *left,
- void *right
-)
-{
- return (left - right);
-}
-
-/*PAGE
- *
- * _Addresses_Is_aligned
- *
- */
-
-STATIC INLINE boolean _Addresses_Is_aligned (
- void *address
-)
-{
- return ( ( (intptr_t)address % 4 ) == 0 );
-}
-
-/*PAGE
- *
- * _Addresses_Is_aligned
- *
- */
-
-STATIC INLINE boolean _Addresses_Is_in_range (
- void *address,
- void *base,
- void *limit
-)
-{
- return ( address >= base && address <= limit );
-}
-
#endif
/* end of include file */