nix-super/src/libexpr/nix_api_expr_internal.h

18 lines
234 B
C
Raw Normal View History

2023-07-14 16:53:30 +03:00
#ifndef NIX_API_EXPR_INTERNAL_H
#define NIX_API_EXPR_INTERNAL_H
// forward declaration
namespace nix {
class EvalState;
};
struct State {
nix::EvalState state;
};
struct GCRef {
void *ptr;
};
#endif // NIX_API_EXPR_INTERNAL_H