Module Name: src
Committed By: maya
Date: Fri Jul 27 14:34:44 UTC 2018
Modified Files:
src/lib/libc/stdlib: posix_memalign.3
Log Message:
Claim C17 (although I'm unsure), add a note about C11's requirements.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/stdlib/posix_memalign.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/stdlib/posix_memalign.3
diff -u src/lib/libc/stdlib/posix_memalign.3:1.4 src/lib/libc/stdlib/posix_memalign.3:1.5
--- src/lib/libc/stdlib/posix_memalign.3:1.4 Fri Jul 27 13:08:47 2018
+++ src/lib/libc/stdlib/posix_memalign.3 Fri Jul 27 14:34:44 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: posix_memalign.3,v 1.4 2018/07/27 13:08:47 maya Exp $
+.\" $NetBSD: posix_memalign.3,v 1.5 2018/07/27 14:34:44 maya Exp $
.\"
.\" Copyright (C) 2006 Jason Evans <[email protected]>.
.\" All rights reserved.
@@ -137,4 +137,8 @@ function conforms to
The
.Fn aligned_alloc
function conforms to
-.St -isoC-2011 .
+.St -isoC-2017 .
+.Sh HISTORY
+.St -isoC-2011
+required size to be an integer multiple of alignment.
+This requirement was removed in later standards.