From: "walter.koebler" Newsgroups: comp.os.msdos.djgpp Subject: How to invoke own new[]-operator? Date: Wed, 22 Oct 1997 18:49:29 +0100 Organization: Nacamar Data Communications Lines: 15 Message-ID: <62lalj$ng1$1@news.nacamar.de> NNTP-Posting-Host: 195.63.7.66 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Own Operator: template inline void* operator new[](size_t t, int anz, const V& v) { X* x = RAM.assign_ram(t,anz); // equivalent to :X* x = (X*) calloc(anz,t); for(int i=0;i