aboutsummaryrefslogtreecommitdiff
path: root/toys/example/hostid.c
blob: feef61bfafe98030d59d5c3f3ee15122b17637d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* hostid.c - Print the numeric identifier for the current host.
 *
 * Copyright 2015 Ranjan Kumar <ranjankumar.bth@gmail.com>
 *
 * No Standard.

USE_HOSTID(NEWTOY(hostid, ">0", TOYFLAG_USR|TOYFLAG_BIN))

config HOSTID
  bool "hostid"
  default n
  help
    usage: hostid

    Print the numeric identifier for the current host.
*/
#define FOR_hostid
#include "toys.h"

void hostid_main(void)
{
  xprintf("%08lx\n", gethostid());
}