summaryrefslogtreecommitdiff
path: root/gnu/lib/libg++/g++-include/Incremental.h
blob: 9b6bb3f8947b6153e9b50b5526da606679cd6649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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