summaryrefslogblamecommitdiffstats
path: root/doc/tools/bmenu/address.inl
blob: f47647f8015ae21c99af73c211500802ec8938c1 (plain) (tree)
1
2
3
4
5
6
7
8




                                                         
                            
                                                    
                        




                              
                   
 







                                            
                    




                         

                         
/*  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 */