~ubuntu-branches/ubuntu/wily/grub2/wily-proposed

« back to all changes in this revision

Viewing changes to include/grub/misc.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Zielcke, Robert Millan, Felix Zielcke
  • Date: 2010-01-26 19:26:25 UTC
  • mfrom: (1.13.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100126192625-coq6czap2ofjollf
Tags: 1.98~20100126-1
* New Bazaar snapshot.
  - Includes mipsel-yeeloong port.

[ Robert Millan ]
* config.in: Lower priority of grub2/linux_cmdline_default.

[ Felix Zielcke ]
* Drop `CFLAGS=-O0' workaround on powerpc. Should be fixed correctly now.
* Ship grub-bin2h and grub-script-check in grub-common.
* Terminate NEWS.Debian with a blank line like lintian would suggest
  if that check would be working correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
                                     const char *condition,
196
196
                                     const char *fmt, ...) __attribute__ ((format (printf, 4, 5)));
197
197
int EXPORT_FUNC(grub_vprintf) (const char *fmt, va_list args);
198
 
int EXPORT_FUNC(grub_sprintf) (char *str, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
199
 
int EXPORT_FUNC(grub_vsprintf) (char *str, const char *fmt, va_list args);
 
198
int EXPORT_FUNC(grub_snprintf) (char *str, grub_size_t n, const char *fmt, ...)
 
199
     __attribute__ ((format (printf, 3, 4)));
 
200
int EXPORT_FUNC(grub_vsnprintf) (char *str, grub_size_t n, const char *fmt,
 
201
                                 va_list args);
 
202
char *EXPORT_FUNC(grub_xasprintf) (const char *fmt, ...)
 
203
     __attribute__ ((format (printf, 1, 2)));
 
204
char *EXPORT_FUNC(grub_xvasprintf) (const char *fmt, va_list args);
200
205
void EXPORT_FUNC(grub_exit) (void) __attribute__ ((noreturn));
201
206
void EXPORT_FUNC(grub_abort) (void) __attribute__ ((noreturn));
202
207
grub_size_t EXPORT_FUNC(grub_utf8_to_ucs4) (grub_uint32_t *dest,