OpenMPI  0.1.1
opal_datatype_memcpy.h
1 /* -*- Mode: C; c-basic-offset:4 ; -*- */
2 /*
3  * Copyright (c) 2004-2009 The University of Tennessee and The University
4  * of Tennessee Research Foundation. All rights
5  * reserved.
6  * Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
7  * $COPYRIGHT$
8  *
9  * Additional copyrights may follow
10  *
11  * $HEADER$
12  */
13 
14 #ifndef OPAL_DATATYPE_MEMCPY_H_HAS_BEEN_INCLUDED
15 #define OPAL_DATATYPE_MEMCPY_H_HAS_BEEN_INCLUDED
16 
17 #define MEMCPY( DST, SRC, BLENGTH ) \
18  memcpy( (DST), (SRC), (BLENGTH) )
19 
20 #endif /* OPAL_DATATYPE_MEMCPY_H_HAS_BEEN_INCLUDED */