1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

* Move setuid stuff to libutil.

* Install libexpr header files.
This commit is contained in:
Eelco Dolstra 2006-09-04 22:55:28 +00:00
parent e5a6c09b12
commit bafc1690fc
4 changed files with 146 additions and 142 deletions

View file

@ -246,15 +246,15 @@ string int2String(int n);
bool string2Int(const string & s, int & n);
/* !!! HACK HACK HACK - this should be in shared.hh, but it's to
facilitate a quick hack - will remove this eventually (famous last
words). */
/* Setuid support. */
struct SwitchToOriginalUser
{
SwitchToOriginalUser();
~SwitchToOriginalUser();
};
void switchToNixUser();
}