add malloc stubs
authorMichael Wallner <mike@php.net>
Wed, 26 Jul 2017 16:06:07 +0000 (18:06 +0200)
committerMichael Wallner <mike@php.net>
Wed, 26 Jul 2017 16:06:07 +0000 (18:06 +0200)
m4/posix/stdlib.m4
psi.d/stdlib.psi

index 08408836b75c00a9b0be8e1ad73fa62ea3183906..c9ce3544d49c76e114582aa16c5d192b9958dfe3 100644 (file)
@@ -24,6 +24,7 @@ PSI_CHECK_STDLIB() {
        PSI_DECL(double atof, [(char *str)])
        PSI_DECL(int atoi, [(char *str)])
        PSI_DECL(long atol, [(char *str)])
+       PSI_DECL(void *calloc, [(size_t nmemb, size_t size)])
        PSI_DECL(div_t div, [(int numerator, int denominator)])
        PSI_DECL(double drand48, [()])
        PSI_DECL(double erand48, [(unsigned short xsubi@<:@3@:>@)])
@@ -38,6 +39,7 @@ PSI_CHECK_STDLIB() {
        PSI_DECL(ldiv_t ldiv, [(long numerator, long denominator)])
        PSI_DECL(lldiv_t lldiv, [(long long numerator, long long denominator)])
        PSI_DECL(long lrand48, [()])
+       PSI_DECL(void *malloc, [(size_t size)])
        PSI_DECL(int mblen, [(const char *s, size_t n)])
        PSI_DECL(size_t mbstowcs, [(wchar_t *dest, char *src, size_t n)])
        PSI_DECL(int mbtowc, [(wchar_t *pwc, char *s, size_t n)])
@@ -52,6 +54,7 @@ PSI_CHECK_STDLIB() {
        PSI_DECL(int rand, [()])
        PSI_DECL(int rand_r, [(unsigned *seed_p)])
        PSI_DECL(long random, [()])
+       PSI_DECL(void *realloc, [(void *ptr, size_t size)])
        PSI_DECL(char *realpath, [(char *path, char *resolved)])
        PSI_DECL(unsigned short *seed48, [(unsigned short seed16v@<:@3@:>@)])
        PSI_DECL(int setenv, [(char *var, char *val, int overwrite)])
index 0b4a5067b30608adcd877a2435dbcfb53a37113b..8191c2f2bbbdfc4ec6fc08f3894e8a602a3c531e 100644 (file)
@@ -35,3 +35,23 @@ function psi\free(object $memory) : void {
        let ptr = objval($memory);
        return void(free);
 }
+
+function psi\malloc(int $size) : object {
+       let size = intval($size);
+       pre_assert size >= 0;
+       return to_object(malloc);
+}
+
+function psi\calloc(int $nmemb, int $size) : object {
+       let nmemb = intval($nmemb);
+       let size = intval($size);
+       pre_assert size >= 0;
+       return to_object(calloc);
+}
+
+function psi\realloc(object $obj, int $size) : object {
+       let ptr = objval($obj);
+       let size = intval($size);
+       pre_assert size >= 0;
+       return to_object(realloc);
+}