mirror of
https://github.com/rfivet/stm32bringup.git
synced 2024-11-15 17:15:57 -05:00
14 lines
195 B
C
14 lines
195 B
C
/* hello.c -- hello there
|
|
** Copyright (c) 2020 Renaud Fivet
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main( void) {
|
|
puts( "hello, world") ;
|
|
return EXIT_SUCCESS ;
|
|
}
|
|
|
|
/* end of hello.c */
|