mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* 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>
9 lines
208 B
C
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;
|
|
}
|