DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦01907e309⟧ TextFile

    Length: 335 (0x14f)
    Types: TextFile
    Names: »new.h«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦cc8755de2⟧ »./libg++-1.36.1.tar.Z« 
        └─⟦23757c458⟧ 
            └─⟦this⟧ »libg++/g++-include/new.h« 

TextFile


#ifndef _new_h
#pragma once
#define _new_h 1

#include <stddef.h>

extern void* operator new(size_t);
extern void  operator delete(void*);

typedef void (*new_handler_t)();
extern "C" void default_new_handler();
extern "C" new_handler_t set_new_handler(new_handler_t);

#ifdef __GNUG__
#define NEW(where) NEW { where }
#endif

#endif