diff options
author | 2002-10-09 03:52:10 +0000 | |
---|---|---|
committer | 2002-10-09 03:52:10 +0000 | |
commit | 7498c5fc93ac82bff5bc14461ed17d575129a31c (patch) | |
tree | c59c8af486f8a2270dcb095809ff40572f0b243a /bin/systrace/util.h | |
parent | new message to track uid/gid changes (diff) | |
download | wireguard-openbsd-7498c5fc93ac82bff5bc14461ed17d575129a31c.tar.xz wireguard-openbsd-7498c5fc93ac82bff5bc14461ed17d575129a31c.zip |
predicates are part of the grammar now; in non-root case, predicates are
evaluated only once; in root case, predicates and variable expansion are
dynamic.
from provos
Diffstat (limited to 'bin/systrace/util.h')
-rw-r--r-- | bin/systrace/util.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/systrace/util.h b/bin/systrace/util.h index a7ce10a6bfe..8e4fdb22d2a 100644 --- a/bin/systrace/util.h +++ b/bin/systrace/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.1 2002/07/19 14:38:58 itojun Exp $ */ +/* $OpenBSD: util.h,v 1.2 2002/10/09 03:52:10 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -30,6 +30,10 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#ifndef _UTIL_H_ +#define _UTIL_H_ + void simplify_path(char *); -char *uid_to_name(uid_t); char *strrpl(char *, size_t, char *, char *); + +#endif /* !_UTIL_H_ */ |