nix-super/src/libexpr/eval-gc.hh

17 lines
193 B
C++
Raw Normal View History

#pragma once
///@file
namespace nix {
/**
* Initialise the Boehm GC, if applicable.
*/
void initGC();
/**
* Make sure `initGC` has already been called.
*/
void assertGCInitialized();
}