summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2012-01-27 00:14:12 +0300
committerIgor Pashev <pashev.igor@gmail.com>2012-01-27 00:14:12 +0300
commitc19103b52f79a56901b9d4404d8d9655c18d7127 (patch)
tree7b4886e13f01cbb1e1c12bf539461ad8fcc167c3
parent22999868937be8407040637374728a5cdac94c0b (diff)
downloadattr-c19103b52f79a56901b9d4404d8d9655c18d7127.tar.gz
u_int32_t -> uint32_t
-rw-r--r--include/attributes.h4
-rw-r--r--man/man3/attr_list.32
2 files changed, 3 insertions, 3 deletions
diff --git a/include/attributes.h b/include/attributes.h
index ba02025..ff50b56 100644
--- a/include/attributes.h
+++ b/include/attributes.h
@@ -69,7 +69,7 @@ typedef struct attrlist {
* al_offset[i] entry points to.
*/
typedef struct attrlist_ent { /* data from attr_list() */
- u_int32_t a_valuelen; /* number bytes in value of attr */
+ uint32_t a_valuelen; /* number bytes in value of attr */
char a_name[1]; /* attr name (NULL terminated) */
} attrlist_ent_t;
@@ -90,7 +90,7 @@ typedef struct attrlist_ent { /* data from attr_list() */
* operation on a cursor is to bzero() it.
*/
typedef struct attrlist_cursor {
- u_int32_t opaque[4]; /* an opaque cookie */
+ uint32_t opaque[4]; /* an opaque cookie */
} attrlist_cursor_t;
/*
diff --git a/man/man3/attr_list.3 b/man/man3/attr_list.3
index 978cfff..8e6fe61 100644
--- a/man/man3/attr_list.3
+++ b/man/man3/attr_list.3
@@ -113,7 +113,7 @@ include the following members:
.nf
.ft 4
.ta 9n 22n
-u_int32_t a_valuelen; /\(** number bytes in value of attr \(**/
+uint32_t a_valuelen; /\(** number bytes in value of attr \(**/
char a_name[]; /\(** attr name (NULL terminated) \(**/
.ft 1
.fi