summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrahn <drahn@openbsd.org>2002-05-16 16:42:15 +0000
committerdrahn <drahn@openbsd.org>2002-05-16 16:42:15 +0000
commit726d797e222bca87f441ecf523c040fb79d24076 (patch)
treec673c5a618fa928a65a338bbc4ca1816cd389ff3
parentNormalize the exponent too. This allows exponents with bit lengths different (diff)
downloadwireguard-openbsd-726d797e222bca87f441ecf523c040fb79d24076.tar.xz
wireguard-openbsd-726d797e222bca87f441ecf523c040fb79d24076.zip
Add missing prototypes for functions in libc/posix1e.
-rw-r--r--sys/sys/extattr.h5
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 */