diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-22 07:38:16 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-22 07:38:16 +0000 |
commit | 80d729d97ca57d6ccee5c953cdad9eedeedd72c9 (patch) | |
tree | d5fda313fd8c43875cd802d5685b5a6d09da98b0 | |
parent | 2e626ce0d93608c66ed59e75da209764b530d2d4 (diff) |
sethostid() actually do return a value
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h index 3ffcec0f9d3..637b6c3a3e4 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -152,7 +152,7 @@ int setdomainname __P((const char *, int)); int setegid __P((gid_t)); int seteuid __P((uid_t)); int setgroups __P((int, const gid_t *)); -void sethostid __P((long)); +int sethostid __P((long)); int sethostname __P((const char *, int)); int setkey __P((const char *)); int setlogin __P((const char *)); |