mirror of
https://github.com/drasko/codezero.git
synced 2026-04-17 09:19:05 +02:00
A few changes to allow development on conts/test directory.
Now, bare containers get their files from conts/bare_src instead of conts/test. test directory will be used for the next generation test programs. Also bare_src is tracked by git now with a minor mod to .gitignore.
This commit is contained in:
13
conts/bare_src/hello.c
Normal file
13
conts/bare_src/hello.c
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Autogenerated hello world print function
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <container.h>
|
||||
|
||||
int print_hello_world(void)
|
||||
{
|
||||
printf("%s: Hello world from %s!\n", __CONTAINER__, __CONTAINER_NAME__);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user