diff options
author | 2002-05-16 16:42:15 +0000 | |
---|---|---|
committer | 2002-05-16 16:42:15 +0000 | |
commit | 726d797e222bca87f441ecf523c040fb79d24076 (patch) | |
tree | c673c5a618fa928a65a338bbc4ca1816cd389ff3 | |
parent | Normalize the exponent too. This allows exponents with bit lengths different (diff) | |
download | wireguard-openbsd-726d797e222bca87f441ecf523c040fb79d24076.tar.xz wireguard-openbsd-726d797e222bca87f441ecf523c040fb79d24076.zip |
Add missing prototypes for functions in libc/posix1e.
-rw-r--r-- | sys/sys/extattr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/extattr.h b/sys/sys/extattr.h index 90e9cfaac3a..ad02f6effcf 100644 --- a/sys/sys/extattr.h +++ b/sys/sys/extattr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extattr.h,v 1.1 2002/02/22 20:37:45 drahn Exp $ */ +/* $OpenBSD: extattr.h,v 1.2 2002/05/16 16:42:15 drahn Exp $ */ /*- * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson @@ -63,6 +63,9 @@ int extattr_set_fd(int _fd, int _attrnamespace, const char *_attrname, const void *_data, size_t _nbytes); int extattr_set_file(const char *_path, int _attrnamespace, const char *_attrname, const void *_data, size_t _nbytes); +int extattr_namespace_to_string(int attrnamespace, char **string); +int extattr_string_to_namespace(const char *string, int *attrnamespace); + __END_DECLS #endif /* !_KERNEL */ |