~ubuntu-branches/ubuntu/utopic/grub/utopic

« back to all changes in this revision

Viewing changes to stage2/char_io.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2005-11-30 18:00:45 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051130180045-q90uxa58hf9pdrrp
Tags: 0.97-1ubuntu1
* Resynchronise with Debian.
* Drop Nathaniel McCallum's nonaltoptions patch, done differently in
  Debian (as defoptions); added migration code to deal with old Ubuntu
  menu.lst files.
* Drop Matthew Garrett's stage 2 drive fallback patch, since upstream has
  implemented a different solution which appears to address essentially
  the same problem.
* Generated debian/control once from debian/control.in using
  type-handling, but continue to avoid the build-dependency on
  type-handling; the generated debian/control is in the source package.
* Disable fix_amd64_compile.diff for now; it causes configure to fail with
  "GRUB requires a working absolute objcopy; upgrade your binutils".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1178
1178
memcheck (int addr, int len)
1179
1179
{
1180
1180
#ifdef GRUB_UTIL
1181
 
  static int start_addr (void)
 
1181
  auto int start_addr (void);
 
1182
  auto int end_addr (void);
 
1183
  
 
1184
  auto int start_addr (void)
1182
1185
    {
1183
1186
      int ret;
1184
1187
# if defined(HAVE_START_SYMBOL)
1189
1192
      return ret;
1190
1193
    }
1191
1194
 
1192
 
  static int end_addr (void)
 
1195
  auto int end_addr (void)
1193
1196
    {
1194
1197
      int ret;
1195
1198
# if defined(HAVE_END_SYMBOL)