Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 111392
Collapse All | Expand All

(-)grub-0.96.orig/stage2/char_io.c (-6 / +6 lines)
Lines 1214-1220 Link Here
1214
# endif
1214
# endif
1215
#endif
1215
#endif
1216
int
1216
int
1217
memcheck (int addr, int len)
1217
memcheck (unsigned long addr, unsigned long len)
1218
{
1218
{
1219
#ifdef GRUB_UTIL
1219
#ifdef GRUB_UTIL
1220
# ifdef __PIC__
1220
# ifdef __PIC__
Lines 1226-1234 Link Here
1226
    return ! errnum;
1226
    return ! errnum;
1227
#  endif
1227
#  endif
1228
# else /* __PIC__ */
1228
# else /* __PIC__ */
1229
  auto int start_addr(void);
1229
  auto unsigned long start_addr(void);
1230
1230
1231
  auto int start_addr (void)
1231
  auto unsigned long start_addr (void)
1232
    {
1232
    {
1233
      int ret;
1233
      int ret;
1234
#  if defined(HAVE_START_SYMBOL)
1234
#  if defined(HAVE_START_SYMBOL)
Lines 1241-1249 Link Here
1241
      return ret;
1241
      return ret;
1242
    }
1242
    }
1243
  auto int end_addr(void);
1243
  auto unsigned long end_addr(void);
1244
  auto int end_addr (void)
1244
  auto unsigned long end_addr (void)
1245
    {
1245
    {
1246
      int ret;
1246
      int ret;
1247
#  if defined(HAVE_END_SYMBOL)
1247
#  if defined(HAVE_END_SYMBOL)
(-)grub-0.96.orig/stage2/shared.h (-1 / +1 lines)
Lines 912-918 Link Here
912
int nul_terminate (char *str);
912
int nul_terminate (char *str);
913
int get_based_digit (int c, int base);
913
int get_based_digit (int c, int base);
914
int safe_parse_maxint (char **str_ptr, int *myint_ptr);
914
int safe_parse_maxint (char **str_ptr, int *myint_ptr);
915
int memcheck (int start, int len);
915
int memcheck (unsigned long start, unsigned long len);
916
void grub_putstr (const char *str);
916
void grub_putstr (const char *str);
917
#ifndef NO_DECOMPRESSION
917
#ifndef NO_DECOMPRESSION

Return to bug 111392