1
0
mirror of https://github.com/rfivet/stm32bringup.git synced 2024-06-09 09:30:44 +00:00
stm32bringup/success.c

12 lines
181 B
C

/* success.c -- success does nothing, successfully
** Copyright (c) 2020 Renaud Fivet
*/
#include <stdlib.h>
int main( void) {
return EXIT_SUCCESS ;
}
/* end of success.c */