* grub-core/lib/posix_wrap/sys/types.h [__APPLE__]: Include stddef

rather than defining size_t ourselves to avoid conflict.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-05-28 17:55:46 +02:00
parent 7de5e20af4
commit 176d5f7d82
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/lib/posix_wrap/sys/types.h [__APPLE__]: Include stddef
rather than defining size_t ourselves to avoid conflict.
2012-05-28 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/fs/hfs.c (grub_hfs_dir): Use memset instead of

View file

@ -21,7 +21,11 @@
#include <grub/misc.h>
#ifndef __APPLE__
typedef grub_size_t size_t;
#else
#include <stddef.h>
#endif
typedef grub_ssize_t ssize_t;
#ifndef GRUB_POSIX_BOOL_DEFINED
typedef enum { false = 0, true = 1 } bool;