diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 16:02:40 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 16:02:40 +0000 |
commit | c1d22f6b609261e5abd7381bd017773c7ae58346 (patch) | |
tree | 73d4d872c548dc482f54068017679abb19fdc7c6 /x2p | |
parent | 9a34ef1dede5fef4f3211de7a12cc37f4645a3bd (diff) | |
download | perl-c1d22f6b609261e5abd7381bd017773c7ae58346.tar.gz |
don't blindly set bool=char on linux (from Andy Dougherty)
p4raw-id: //depot/perl@5144
Diffstat (limited to 'x2p')
-rw-r--r-- | x2p/a2p.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -73,9 +73,7 @@ #define MEM_SIZE Size_t -#ifdef STANDARD_C -# include <stdlib.h> -#else +#ifndef STANDARD_C Malloc_t malloc (MEM_SIZE nbytes); Malloc_t calloc (MEM_SIZE elements, MEM_SIZE size); Malloc_t realloc (Malloc_t where, MEM_SIZE nbytes); |