[c-host] init platform app struct

This commit is contained in:
Geoffrey McRae 2020-01-03 14:56:13 +11:00
parent 89d6ea0b5d
commit 074af5d16c
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
B1-44-gc5baf212c8+1
B1-45-g89d6ea0b5d+1

View File

@ -29,10 +29,10 @@ Place, Suite 330, Boston, MA 02111-1307 USA
struct app
{
const char * executable;
const char * executable;
};
struct app app;
struct app app = { 0 };
int main(int argc, char * argv[])
{