diff options
author | Nathan Scott <nathans@sgi.com> | 2002-06-03 00:22:06 +0000 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2002-06-03 00:22:06 +0000 |
commit | 955baf68aaeced78234fe9d0f385b5a2c84c08f3 (patch) | |
tree | f0cad2694988c9e1b005f35d217aaf2c96ef9e02 /man/man2 | |
parent | e2c11627ec9873ed7ae04c55fe5c197c2f538c54 (diff) | |
download | attr-955baf68aaeced78234fe9d0f385b5a2c84c08f3.tar.gz |
update from AndreasG - missing some uses of const in function prototypes.
Diffstat (limited to 'man/man2')
-rw-r--r-- | man/man2/setxattr.2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/man2/setxattr.2 b/man/man2/setxattr.2 index 8a4570c..b3ce3c7 100644 --- a/man/man2/setxattr.2 +++ b/man/man2/setxattr.2 @@ -14,11 +14,11 @@ setxattr, lsetxattr, fsetxattr \- set an extended attribute value .B #include <attr/xattr.h> .sp .BI "int setxattr (const char\ *" path ", const char\ *" name ", -.BI "\t\t\t void\ *" value ", size_t " size ", int " flags ); +.BI "\t\t\t const void\ *" value ", size_t " size ", int " flags ); .BI "int lsetxattr (const char\ *" path ", const char\ *" name ", -.BI "\t\t\t void\ *" value ", size_t " size ", int " flags ); +.BI "\t\t\t const void\ *" value ", size_t " size ", int " flags ); .BI "int fsetxattr (int " filedes ", const char\ *" name ", -.BI "\t\t\t void\ *" value ", size_t " size ", int " flags ); +.BI "\t\t\t const void\ *" value ", size_t " size ", int " flags ); .fi .fam T .SH DESCRIPTION |