mirror of
https://github.com/rfivet/stm32bringup.git
synced 2024-11-16 09:36:01 -05:00
12 lines
181 B
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 */
|