aboutsummaryrefslogtreecommitdiff
path: root/include/kvm.h
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1995-03-20 16:17:50 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1995-03-20 16:17:50 +0000
commit15f7fc2caaafa7b613e238cbdd2f035c6ed17644 (patch)
tree65b3cd258dbc7997cee4cce416b3560c8bea2c0a /include/kvm.h
parent0426122fa0efb1d4aae345a7fced7a93036bdd91 (diff)
Change u_long to unsigned long to be consistent.
Notes
Notes: svn path=/head/; revision=7188
Diffstat (limited to 'include/kvm.h')
-rw-r--r--include/kvm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/kvm.h b/include/kvm.h
index 239671e79391..00b44b05ee23 100644
--- a/include/kvm.h
+++ b/include/kvm.h
@@ -63,7 +63,8 @@ kvm_t *kvm_openfiles
__P((const char *, const char *, const char *, int, char *));
int kvm_read __P((kvm_t *, unsigned long, void *, unsigned int));
int kvm_write __P((kvm_t *, unsigned long, const void *, unsigned int));
-ssize_t kvm_uread __P((kvm_t *, struct proc *, u_long, char *, size_t));
+ssize_t kvm_uread
+ __P((kvm_t *, struct proc *, unsigned long, char *, size_t));
__END_DECLS