summaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2014-07-09 16:57:50 +0000
committerBob Beck <beck@cvs.openbsd.org>2014-07-09 16:57:50 +0000
commitc73b45689db7f57db4a9ca049eb037289b29b29c (patch)
treeff7cf9c35f2786129536f5e5cdb88a03079d5fa5 /include/stdlib.h
parent7f1f6461446fb7e523a23a86235a7c8f62c858a1 (diff)
Clean up after arc4random u_int32_t uint32_t change
ok jsing@
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 71bb9f4fc87..495b01bf5e7 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.58 2014/04/22 14:26:26 tedu Exp $ */
+/* $OpenBSD: stdlib.h,v 1.59 2014/07/09 16:57:49 beck Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -305,8 +305,8 @@ qdiv_t qdiv(quad_t, quad_t);
quad_t strtoq(const char *, char **, int);
u_quad_t strtouq(const char *, char **, int);
-u_int32_t arc4random(void);
-u_int32_t arc4random_uniform(u_int32_t);
+uint32_t arc4random(void);
+uint32_t arc4random_uniform(uint32_t);
void arc4random_buf(void *, size_t)
__attribute__((__bounded__ (__string__,1,2)));