mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-06 18:36:48 +02:00
10 lines
218 B
C++
10 lines
218 B
C++
#include "primops.hh"
|
|
|
|
using namespace nix;
|
|
|
|
static void prim_anotherNull (EvalState & state, const Pos & pos, Value ** args, Value & v)
|
|
{
|
|
mkNull(v);
|
|
}
|
|
|
|
static RegisterPrimOp r("anotherNull", 0, prim_anotherNull);
|