]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/IA32_flat_GCC_Galileo_Gen_2/Support_Files/stdlib.h
commit 9f316c246baafa15c542a5aea81a94f26e3d6507
[freertos] / FreeRTOS / Demo / IA32_flat_GCC_Galileo_Gen_2 / Support_Files / stdlib.h
1 /*\r
2  * Temporary file for use only during development when there are no library or\r
3  * header files.\r
4  */\r
5 \r
6 \r
7 #ifndef STDLIB_H\r
8 #define STDLIB_H\r
9 \r
10 \r
11 /*\r
12  *  Extremely crude standard library implementations in lieu of having a C\r
13  *  library.\r
14  */\r
15 void *memset( void *pvDest, int iValue, unsigned long ulBytes );\r
16 void *memcpy( void *pvDest, const void *pvSource, unsigned long ulBytes );\r
17 int memcmp( const void *pvMem1, const void *pvMem2, unsigned long ulBytes );\r
18 \r
19 #endif /* STDLIB_H */\r
20 \r