[net.micro.pc] cfree on Xenix

frans@duvel.UUCP (Frans Meulenbroeks) (12/06/85)

[followup to net.micro.pc]
I want to use curses on a PC/AT using a small model program.
There is a small model curses library. However, it uses cfree,
and cfree is only available in the large memory model. What can
I do to get my program running as a small model program??
Any help would be appreciated greatly!
-- 
	Frans Meulenbroeks, Philips Microprocessor Development Systems
		   ...!{seismo|philabs|decvax}!mcvax!philmds!frans

gwyn@brl-tgr.ARPA (Doug Gwyn <gwyn>) (12/09/85)

> I want to use curses on a PC/AT using a small model program.
> There is a small model curses library. However, it uses cfree,
> and cfree is only available in the large memory model. What can
> I do to get my program running as a small model program??

void cfree( p )
	char	*p;
	{
	free( p );
	}