Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / sbrk.c
1 /* sbrk.c -- allocate memory dynamically.\r
2  * \r
3  * Copyright (c) 1995 Cygnus Support\r
4  *\r
5  * The authors hereby grant permission to use, copy, modify, distribute,\r
6  * and license this software and its documentation for any purpose, provided\r
7  * that existing copyright notices are retained in all copies and that this\r
8  * notice is included verbatim in any distributions. No written agreement,\r
9  * license, or royalty fee is required for any of the authorized uses.\r
10  * Modifications to this software may be copyrighted by their authors\r
11  * and need not follow the licensing terms described here, provided that\r
12  * the new terms are clearly indicated on the first page of each file where\r
13  * they apply.\r
14  */\r
15 #include <errno.h>\r
16 #include "glue.h"\r
17 \r
18 #define RAMSIZE             (caddr_t)0x80000\r
19 /*\r
20  * sbrk -- changes heap size size. Get nbytes more\r
21  *         RAM. We just increment a pointer in what's\r
22  *         left of memory on the board.\r
23  */\r
24 char *\r
25 sbrk (nbytes)\r
26      int nbytes;\r
27 {\r
28   static long heap_ptr=_end; \r
29   char  *base;\r
30   #ifdef debuglg\r
31   prs("[sbrk]\n");\r
32   #endif\r
33   \r
34   base = heap_ptr;\r
35   heap_ptr += nbytes;\r
36   \r
37   return base;\r
38 }\r