mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2026-08-06 05:04:12 +00:00
* Update folder structure * Correct project files * Move test folder * Some changes after Yuki's comments
11 lines
189 B
C
11 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
|