mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
14 lines
213 B
C
14 lines
213 B
C
/*
|
|
* 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;
|
|
}
|
|
|