Just fix some warnings for Haiku as well.

One of them was a missing prototype, the other was likely some strangeness in the definition of size_t.


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1953 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2012-05-12 11:48:39 +00:00
parent 93c4832138
commit 235f7d4d1c
3 changed files with 10 additions and 1 deletions

View File

@@ -1,8 +1,15 @@
#include "struct.h"
/*
* Haiku specific code was moved here, because the API is C++.
* It can't be compiled in the usual C files.
* So we provide a C wrapper to the functons we need.
*/
#ifndef __HAIKU_H
#define __HAIKU_H
qword haiku_get_free_space(char* path);
char* haiku_get_clipboard();
#endif