Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / _calloc.c
1 /*-------------------------------------------------------------------------
2    calloc.c - allocate cleared memory.
3
4    Copyright (C) 2004 - Maarten Brock, sourceforge.brock@dse.nl
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    This library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with this library; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 -------------------------------------------------------------------------*/
20
21 #include <sdcc-lib.h>
22 #include <malloc.h>
23 #include <string.h>
24
25 //--------------------------------------------------------------------
26 //calloc function implementation for embedded system
27 //Non-ANSI keywords are C51 specific.
28 // __xdata - variable in external memory (just RAM)
29 //--------------------------------------------------------------------
30
31 #if _SDCC_MALLOC_TYPE_MLH
32
33 #define __xdata
34
35 typedef struct _MEMHEADER MEMHEADER;
36
37 struct _MEMHEADER
38 {
39   MEMHEADER *   next;
40   MEMHEADER *   prev;
41   unsigned int  len;
42   unsigned char mem;
43 };
44
45 #define HEADER_SIZE (sizeof(MEMHEADER)-sizeof(char))
46
47 #else
48
49 #define MEMHEADER   struct MAH// Memory Allocation Header
50
51 MEMHEADER
52 {
53   MEMHEADER __xdata *  next;
54   unsigned int         len;
55   unsigned char        mem[];
56 };
57
58 #define HEADER_SIZE sizeof(MEMHEADER)
59
60 #endif
61
62 void __xdata * calloc (size_t nmemb, size_t size)
63 {
64   register void __xdata * ptr;
65
66   ptr = malloc(nmemb * size);
67   if (ptr)
68   {
69     memset(ptr, 0, nmemb * size);
70   }
71   return ptr;
72 }
73 //END OF MODULE