~hamo/ubuntu/precise/grub2/grub2.hi_res

« back to all changes in this revision

Viewing changes to util/grub-script-check.c

Tags: upstream-1.98+20100705
ImportĀ upstreamĀ versionĀ 1.98+20100705

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
#include "progname.h"
39
39
 
40
 
void
41
 
grub_putchar (int c)
 
40
void 
 
41
grub_xputs_real (const char *str)
42
42
{
43
 
  putchar (c);
 
43
  fputs (str, stdout);
44
44
}
45
45
 
 
46
void (*grub_xputs) (const char *str) = grub_xputs_real;
 
47
 
46
48
int
47
49
grub_getkey (void)
48
50
{