diff options
author | 2001-06-27 06:20:46 +0000 | |
---|---|---|
committer | 2001-06-27 06:20:46 +0000 | |
commit | 135b70fca61a9831a90729b4fee0dd980f62b07b (patch) | |
tree | 2a0523b3dab8696a995bf800e38e1b0f56b32d15 | |
parent | Remove IPF; openbsd@davidkrause.com (diff) | |
download | wireguard-openbsd-135b70fca61a9831a90729b4fee0dd980f62b07b.tar.xz wireguard-openbsd-135b70fca61a9831a90729b4fee0dd980f62b07b.zip |
Add prototype for getprogname() and setprogname()
-rw-r--r-- | kerberosV/include/roken.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kerberosV/include/roken.h b/kerberosV/include/roken.h index 1d5d9ccc8d6..719070239da 100644 --- a/kerberosV/include/roken.h +++ b/kerberosV/include/roken.h @@ -38,7 +38,7 @@ * SUCH DAMAGE. */ -/* $Id: roken.h,v 1.2 2001/06/22 15:57:36 hin Exp $ */ +/* $Id: roken.h,v 1.3 2001/06/27 06:20:46 hin Exp $ */ #include <stdio.h> #include <stdlib.h> @@ -210,6 +210,10 @@ struct hostent* roken_gethostbyaddr(const void*, size_t, int); #define roken_getsockname(a,b,c) getsockname(a,b,c) +void setprogname(const char *argv0); + +const char *getprogname(void); + void set_progname(char *argv0); const char *get_progname(void); |