diff options
author | 2001-09-28 20:32:19 +0000 | |
---|---|---|
committer | 2001-09-28 20:32:19 +0000 | |
commit | a4432c1c23e587a68ba47b5d4112105baff58058 (patch) | |
tree | a47141d94279940a896c44768e0faaf6037b4309 | |
parent | multiple calls to pidfile(3) are actually ok, but there are problems if you change the basename (diff) | |
download | wireguard-openbsd-a4432c1c23e587a68ba47b5d4112105baff58058.tar.xz wireguard-openbsd-a4432c1c23e587a68ba47b5d4112105baff58058.zip |
add pidfile(3) prototype
-rw-r--r-- | lib/libutil/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libutil/util.h b/lib/libutil/util.h index e80c676cf7e..05aad1e6ef0 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.15 2001/08/16 18:24:32 millert Exp $ */ +/* $OpenBSD: util.h,v 1.16 2001/09/28 20:32:19 jakob Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -87,6 +87,7 @@ int login_tty __P((int)); int logout __P((const char *)); void logwtmp __P((const char *, const char *, const char *)); int opendev __P((char *, int, int, char **)); +int pidfile __P((const char *)); void pw_setdir __P((const char *)); char *pw_file __P((const char *)); int pw_lock __P((int retries)); |