~ubuntu-branches/debian/sid/grub2/sid-200907171837

« back to all changes in this revision

Viewing changes to include/grub/i386/types.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2006-06-10 19:57:01 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060610195701-2khcfacexb229tq4
Tags: 1.94-3
Fix FTBFS in amd64. Closes: 372548

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  GRUB  --  GRand Unified Bootloader
3
 
 *  Copyright (C) 2002  Free Software Foundation, Inc.
 
3
 *  Copyright (C) 2002,2006  Free Software Foundation, Inc.
4
4
 *
5
5
 *  GRUB is free software; you can redistribute it and/or modify
6
6
 *  it under the terms of the GNU General Public License as published by
21
21
#define GRUB_TYPES_CPU_HEADER   1
22
22
 
23
23
/* The size of void *.  */
24
 
#define GRUB_HOST_SIZEOF_VOID_P 4
 
24
#define GRUB_TARGET_SIZEOF_VOID_P       4
25
25
 
26
26
/* The size of long.  */
27
 
#define GRUB_HOST_SIZEOF_LONG   4
 
27
#define GRUB_TARGET_SIZEOF_LONG         4
28
28
 
29
29
/* i386 is little-endian.  */
30
 
#undef GRUB_HOST_WORDS_BIGENDIAN
 
30
#undef GRUB_TARGET_WORDS_BIGENDIAN
31
31
 
32
32
#endif /* ! GRUB_TYPES_CPU_HEADER */