Initial Release
This commit is contained in:
18
cmake/build_variants/main.c
Normal file
18
cmake/build_variants/main.c
Normal file
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "pico/stdlib.h"
|
||||
#include "other.h"
|
||||
|
||||
int main() {
|
||||
stdio_init_all();
|
||||
do_other();
|
||||
#ifdef DO_EXTRA
|
||||
printf("A little extra\n");
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user