From: Gurusamy Sarathy Date: Mon, 8 Feb 1999 10:56:16 +0000 (+0000) Subject: remove spurious #endif in last change X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=651b9576cc8d7812bbcba060854ec8a56f698aae;p=p5sagit%2Fp5-mst-13.2.git remove spurious #endif in last change p4raw-id: //depot/perl@2833 --- diff --git a/perl.h b/perl.h index a9c2268..206f6be 100644 --- a/perl.h +++ b/perl.h @@ -399,17 +399,15 @@ Malloc_t Perl_realloc _((Malloc_t where, MEM_SIZE nbytes)); /* 'mfree' rather than 'free', since there is already a 'perl_free' * that causes clashes with case-insensitive linkers */ Free_t Perl_mfree _((Malloc_t where)); -# endif - -# undef safemalloc -# undef safecalloc -# undef saferealloc -# undef safefree -# define safemalloc Perl_malloc -# define safecalloc Perl_calloc -# define saferealloc Perl_realloc -# define safefree Perl_mfree +# undef safemalloc +# undef safecalloc +# undef saferealloc +# undef safefree +# define safemalloc Perl_malloc +# define safecalloc Perl_calloc +# define saferealloc Perl_realloc +# define safefree Perl_mfree #endif /* MYMALLOC */ #if defined(STANDARD_C) && defined(I_STDDEF)