Initial Release

This commit is contained in:
graham sanderson
2021-01-20 10:49:34 -06:00
commit 46078742c7
245 changed files with 21157 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stdio.h>
#include "other.h"
void do_other() {
printf("The common thing is %d\n",
A_DEFINE_THAT_IS_SHARED);
printf("The binary local thing is %d\n",
A_DEFINE_THAT_IS_NOT_SHARED);
}