Author: blueswirl Date: 2010-01-23 15:43:02 +0100 (Sat, 23 Jan 2010) New Revision: 668
Modified: trunk/openbios-devel/arch/unix/unix.c Log: Sparc64: fix native Unix version build
Signed-off-by: Blue Swirl blauwirbel@gmail.com
Modified: trunk/openbios-devel/arch/unix/unix.c =================================================================== --- trunk/openbios-devel/arch/unix/unix.c 2010-01-22 18:50:54 UTC (rev 667) +++ trunk/openbios-devel/arch/unix/unix.c 2010-01-23 14:43:02 UTC (rev 668) @@ -35,6 +35,7 @@ #include "openbios-version.h"
#include "blk.h" +#include "ofmem.h"
#define MEMORY_SIZE (4*1024*1024) /* 4M ram for hosted system */ #define DICTIONARY_SIZE (256*1024) /* 256k for the dictionary */ @@ -67,6 +68,12 @@
int errno_int; /* implement for fs drivers, needed to build on Mac OS X */
+ucell ofmem_claim(ucell addr, ucell size, ucell align) +{ + return 0; +} + + #if 0 static void write_dictionary(char *filename) {