Chameleon

Chameleon Svn Source Tree

Root/tags/2.0/i386/modules/klibc/calloc.c

Source at commit 1808 created 12 years 4 months ago.
By blackosx, Revise layout of package installer 'Welcome' file so it looks cleaner. Change the copyright notice to begin from 2009 as seen in the Chameleon 2.0 r431 installer. Should this date be set earlier?
1/*
2 * calloc.c
3 */
4
5#include "libsaio.h"
6/* FIXME: This should look for multiplication overflow */
7
8void *calloc(size_t nmemb, size_t size)
9{
10void *ptr;
11
12size *= nmemb;
13ptr = malloc(size);
14if (ptr)
15memset(ptr, 0, size);
16
17return ptr;
18}
19

Archive Download this file

Revision: 1808