mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 16:57:41 -04:00
* Update folder structure * Correct project files * Move test folder * Some changes after Yuki's comments
10 lines
189 B
C
10 lines
189 B
C
#ifndef __HELLO_WORLD__
|
|
#define __HELLO_WORLD__
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
int8_t average(int8_t value1, int8_t value2, int8_t value3);
|
|
int Print_Hello_world( void );
|
|
|
|
#endif
|