diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2014-05-07 20:08:00 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2014-05-07 20:08:00 +0000 |
commit | 86c06ff20f05c75346eda596140147c4bbd51c83 (patch) | |
tree | 9299f905d0cb53c0d2e84a3b14347a1e0801ac5e /lib | |
parent | ee5b6556289a3102de09f220aba60acee58d8bee (diff) |
comment style fix
ok crickets@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 40bf6652490..6f2a48ba4c5 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: malloc.c,v 1.159 2014/05/01 04:08:13 tedu Exp $ */ +/* $OpenBSD: malloc.c,v 1.160 2014/05/07 20:07:59 halex Exp $ */ /* * Copyright (c) 2008, 2010, 2011 Otto Moerbeek <otto@drijf.net> * Copyright (c) 2012 Matthew Dempsky <matthew@openbsd.org> @@ -1378,7 +1378,8 @@ realloc(void *ptr, size_t size) } -/* this is sqrt(SIZE_MAX+1), as s1*s2 <= SIZE_MAX +/* + * This is sqrt(SIZE_MAX+1), as s1*s2 <= SIZE_MAX * if both s1 < MUL_NO_OVERFLOW and s2 < MUL_NO_OVERFLOW */ #define MUL_NO_OVERFLOW (1UL << (sizeof(size_t) * 4)) |