blob: a8caeefe20707fd0e4c87a642785cc5a715cfaf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* vi: set sw=4 ts=4:
*
* hello.c - A hello world program.
*
* Copyright 2006 Rob Landley <rob@landley.net>
*
* Not in SUSv3.
* See http://www.opengroup.org/onlinepubs/009695399/utilities/
USE_HELLO(NEWTOY(hello, NULL, TOYFLAG_USR|TOYFLAG_BIN))
config HELLO
bool "hello"
default y
help
A hello world program. You don't need this.
Mostly used as an example/skeleton file for adding new commands,
occasionally nice to test kernel booting via "init=/bin/hello".
*/
#include "toys.h"
void hello_main(void)
{
printf("Hello world\n");
}
|