~jonathank89/burg/burg-percise

« back to all changes in this revision

Viewing changes to hello/hello.c

  • Committer: gniibe
  • Date: 2003-02-08 08:15:43 UTC
  • Revision ID: gniibe@localhost-20030208081543-qzbbnaytbgs1xq2b
hello module and bug fix of util/resolve.c

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* hello.c - test module for dynamic loading */
 
2
/*
 
3
 *  PUPA  --  Preliminary Universal Programming Architecture for GRUB
 
4
 *  Copyright (C) 2003  NIIBE Yutaka <gniibe@m17n.org>
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 */
 
20
 
 
21
#include <pupa/types.h>
 
22
#include <pupa/misc.h>
 
23
#include <pupa/mm.h>
 
24
#include <pupa/err.h>
 
25
#include <pupa/dl.h>
 
26
#include <pupa/normal.h>
 
27
 
 
28
static int
 
29
pupa_cmd_hello (int argc, char *argv[])
 
30
{
 
31
  (void)argc;  (void)argv;      /* To stop warning. */
 
32
  pupa_printf ("Hello World\n");
 
33
  return 0;
 
34
}
 
35
 
 
36
PUPA_MOD_INIT
 
37
{
 
38
  (void)mod;                    /* To stop warning. */
 
39
  pupa_register_command ("hello", pupa_cmd_hello, PUPA_COMMAND_FLAG_BOTH,
 
40
                         "hello", "Say hello");
 
41
}
 
42
 
 
43
PUPA_MOD_FINI
 
44
{
 
45
  pupa_unregister_command ("hello");
 
46
}