~ubuntu-branches/debian/stretch/grub2/stretch

« back to all changes in this revision

Viewing changes to util/grub-probe.c

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
int print = PRINT_FS;
60
60
static unsigned int argument_is_device = 0;
61
61
 
62
 
void
63
 
grub_putchar (int c)
 
62
void 
 
63
grub_xputs_real (const char *str)
64
64
{
65
 
  putchar (c);
 
65
  fputs (str, stdout);
66
66
}
67
67
 
 
68
void (*grub_xputs) (const char *str) = grub_xputs_real;
 
69
 
68
70
int
69
71
grub_getkey (void)
70
72
{