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