Two very small changes that help compiling Haiku under Haiku.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23947 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2008-02-12 00:54:04 +00:00
parent f2f3c67292
commit d9b0e6addd
2 changed files with 3 additions and 0 deletions

View File

@ -29,11 +29,13 @@
#define DBG(x)
#define OUT printf
#ifndef HAIKU_HOST_PLATFORM_HAIKU
// icon types (which really ought to be publicly or semi-publicly declared somewhere...)
enum {
B_MINI_ICON_TYPE = 'MICN',
B_LARGE_ICON_TYPE = 'ICON',
};
#endif
namespace BPrivate {
namespace Storage {

View File

@ -9,6 +9,7 @@
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <AutoDeleter.h>