Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

72
support/stdlib.c Normal file
View File

@@ -0,0 +1,72 @@
/*
* <stdlib.h> wrapper functions.
*
* Authors:
* Jonathan Pryor (jonpryor@vt.edu)
*
* Copyright (C) 2004-2005 Jonathan Pryor
*/
#include <stdlib.h>
#include "map.h"
#include "mph.h"
G_BEGIN_DECLS
gint32
Mono_Posix_Stdlib_EXIT_FAILURE (void)
{
return EXIT_FAILURE;
}
gint32
Mono_Posix_Stdlib_EXIT_SUCCESS (void)
{
return EXIT_SUCCESS;
}
gint32
Mono_Posix_Stdlib_MB_CUR_MAX (void)
{
return MB_CUR_MAX;
}
gint32
Mono_Posix_Stdlib_RAND_MAX (void)
{
return RAND_MAX;
}
void*
Mono_Posix_Stdlib_calloc (mph_size_t nmemb, mph_size_t size)
{
if (mph_have_size_t_overflow(nmemb) || mph_have_size_t_overflow(size))
return NULL;
return calloc ((size_t) nmemb, (size_t) size);
}
void*
Mono_Posix_Stdlib_malloc (mph_size_t size)
{
if (mph_have_size_t_overflow(size))
return NULL;
return malloc ((size_t) size);
}
void*
Mono_Posix_Stdlib_realloc (void* ptr, mph_size_t size)
{
if (mph_have_size_t_overflow(size))
return NULL;
return realloc (ptr, (size_t) size);
}
G_END_DECLS
/*
* vim: noexpandtab
*/