stm32bringup/hello.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 */