source: soft/giet_vm/libs/utils.h @ 189

Last change on this file since 189 was 189, checked in by alain, 12 years ago

Introducing a new release where all initialisation
is done in the boot code.

File size: 527 bytes
Line 
1//////////////////////////////////////////////////////////////////////////////////
2// File     : utils.h         
3// Date     : 01/08/2012
4// Author   : alain greiner mohamed karaoui
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////////
7
8#ifndef _UTILS_H
9#define _UTILS_H
10
11void*   memcpy( void*                   dst,
12                void*                   src,
13                unsigned int    size ); 
14
15void*   memcpy( void*                   dst,
16                int                             c,
17                unsigned int    size );
18 
19#endif
20
Note: See TracBrowser for help on using the repository browser.