From 005e8cc35fad469899c2960a72820f402dc08be4 Mon Sep 17 00:00:00 2001 From: Bart Oldeman Date: Sat, 7 Feb 2004 17:59:45 +0000 Subject: [PATCH] talloc won't work with MSC (no sbrk or brk available) git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@774 6ac86273-5f31-0410-b378-82cca8765d1b --- sys/talloc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/talloc.c b/sys/talloc.c index 0e3601f..2081aa9 100644 --- a/sys/talloc.c +++ b/sys/talloc.c @@ -12,6 +12,8 @@ ** use it only, if your programs are already debugged !! **/ +#ifndef _MSC_VER /* MSC has no brk/sbrk */ + #include #include @@ -219,3 +221,5 @@ main() return 1; } #endif + +#endif