diff options
author | Douglas Lankshear <doug@lankshear.net> | 1998-02-23 23:57:07 -0800 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-25 19:08:06 +0000 |
commit | f7a92b15d369b78479721e50e5aad6f6d7b1862c (patch) | |
tree | 19a77d7668e88c942a8b7ac31f2439119d854fee /ipmem.h | |
parent | 611e57134ef8720264c53f5e0589f41461af4dcb (diff) | |
download | perl-f7a92b15d369b78479721e50e5aad6f6d7b1862c.tar.gz |
[asperl] added AS patch#7
Message-Id: <01BD40F9.CE57B210.dougl@ActiveState.com>
Subject: [PATCH]
Here's an attempt at
6. MANIFEST must be updated with new file names
5. Mktime(), Stat() etc., rather than MKtime()/STat() etc.
And some changes to move toward
1. Merge PERL_OBJECT build support into regular Makefile and makefile.mk
-- Doug
p4raw-id: //depot/asperl@586
Diffstat (limited to 'ipmem.h')
-rw-r--r-- | ipmem.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ /* - ipmem.h - Interface for perl memory allocation + ipmem.h + Interface for perl memory allocation */ @@ -11,9 +11,9 @@ class IPerlMem { public: - virtual void* Malloc(size_t) = 0; - virtual void* Realloc(void*, size_t) = 0; - virtual void Free(void*) = 0; + virtual void* Malloc(size_t) = 0; + virtual void* Realloc(void*, size_t) = 0; + virtual void Free(void*) = 0; }; #endif /* __Inc__IPerlMem___ */ |