Files
rtems/c/src/lib/libbsp/unix/posix/shmsupp/addrconv.c
Joel Sherrill 86d58c02cc 2003-09-04 Joel Sherrill <joel@OARcorp.com>
* clock/clock.c, console/console.c, include/bsp.h, shmsupp/addrconv.c,
	shmsupp/cause_intr.c, shmsupp/getcfg.c, shmsupp/lock.c,
	shmsupp/mpisr.c, startup/bspclean.c, startup/bspstart.c,
	startup/exit.c, startup/setvec.c, timer/timer.c: URL for license
	changed.
2003-09-04 18:52:58 +00:00

30 lines
554 B
C

/* addrconv.v
*
* No address range conversion is required.
*
* Input parameters:
* addr - address to convert
*
* Output parameters:
* returns - converted address
*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
* $Id$
*/
#include <bsp.h>
#include <shm_driver.h>
void *Shm_Convert_address(
void *addr
)
{
return ( addr );
}