Module Name: src
Committed By: wiz
Date: Thu Jul 19 06:44:12 UTC 2012
Modified Files:
src/lib/libc/ssp: __builtin_object_size.3
Log Message:
Minus (one) needs a backslash before the minus.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/lib/libc/ssp/__builtin_object_size.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/ssp/__builtin_object_size.3
diff -u src/lib/libc/ssp/__builtin_object_size.3:1.9 src/lib/libc/ssp/__builtin_object_size.3:1.10
--- src/lib/libc/ssp/__builtin_object_size.3:1.9 Wed Jul 18 22:22:26 2012
+++ src/lib/libc/ssp/__builtin_object_size.3 Thu Jul 19 06:44:12 2012
@@ -1,4 +1,4 @@
-.\" $NetBSD: __builtin_object_size.3,v 1.9 2012/07/18 22:22:26 christos Exp $
+.\" $NetBSD: __builtin_object_size.3,v 1.10 2012/07/19 06:44:12 wiz Exp $
.\"
.\" Copyright (c) 2007 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -50,8 +50,8 @@ effects.
If the size of the object is not known or it has side effects the
.Fn __builtin_object_size
function returns:
-.Bl -tag -width (size_t)-1 -offset indent
-.It Dv (size_t)-1
+.Bl -tag -width (size_t)\-1 -offset indent
+.It Dv (size_t)\-1
for
.Fa type
.Dv 0
@@ -90,7 +90,7 @@ appeared in
This is a non-standard, compiler-specific extension.
.Pp
Note that currently the object size calculation pass is only done at -O1
-or above, meaning that this function always returns -1 when the optimizer
+or above, meaning that this function always returns \-1 when the optimizer
is off.
.Pp
There are some discussions about always doing the object size pass, but