NetBSD/gnu/lib/libg++/g++-include/Incremental.h

14 lines
385 B
C
Raw Normal View History

1993-03-21 12:45:37 +03:00
#ifndef Incremental_h
#ifdef __GNUG__
#pragma once
#pragma interface
#endif
#define Incremental_h
#define DECLARE_INIT_FUNCTION(USER_INIT_FUNCTION) \
static void USER_INIT_FUNCTION (); extern void (*_initfn)(); \
static struct xyzzy { xyzzy () {_initfn = USER_INIT_FUNCTION;}; \
~xyzzy () {};} __2xyzzy;
#else
#error Incremental.h was not the first file included in this module
#endif