Files
chromebrew/tools/hello_world_chromebrew.c
Satadru Pramanik, DO, MPH, MEng 94699dea02 Add build test source file to tools dir & hello_world_chromebrew build test package (#9316)
* Add build test source file to tests

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* move file to tools

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* add descriptive header

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add hello_world_chromebrew package

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
2024-02-12 13:34:44 -06:00

9 lines
208 B
C

/* This file is used by the hello_world_chromebrew build test package.
It should be kept in tools/hello_world_chromebrew.c
*/
#include <stdio.h>
int main() {
printf("Hello Chromebrew!");
return 0;
}