mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-28 08:36:15 +02:00
17 lines
193 B
C++
17 lines
193 B
C++
|
#pragma once
|
||
|
///@file
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
/**
|
||
|
* Initialise the Boehm GC, if applicable.
|
||
|
*/
|
||
|
void initGC();
|
||
|
|
||
|
/**
|
||
|
* Make sure `initGC` has already been called.
|
||
|
*/
|
||
|
void assertGCInitialized();
|
||
|
|
||
|
}
|