blob: 76a7ee166dbe0fd3ffc22b1737e810f277b6a034 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __REFERENCES_H
#define __REFERENCES_H
#include "types.hh"
namespace nix {
PathSet scanForReferences(const Path & path, const PathSet & refs);
}
#endif /* !__REFERENCES_H */
|