summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/stand.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-09-18 14:40:13 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-09-18 14:40:13 +0000
commit4b74e4062db32f5f884d9091d1f2630463c583c4 (patch)
tree6b928befc5ab663ff06e8f3d662aa996ed2a863b /sys/lib/libsa/stand.h
parentfb353c095a28836b7f0ce4f662e7e15096d8b8f5 (diff)
correct dkcksum return type.
Diffstat (limited to 'sys/lib/libsa/stand.h')
-rw-r--r--sys/lib/libsa/stand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index 9470e7c8c43..afa837f89de 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -111,7 +111,7 @@ void *alloc __P((unsigned int));
void free __P((void *, unsigned int));
struct disklabel;
char *getdisklabel __P((const char *, struct disklabel *));
-int dkcksum __P((struct disklabel *));
+u_int dkcksum __P((struct disklabel *));
void printf __P((const char *, ...));
void sprintf __P((char *, const char *, ...));