aboutsummaryrefslogtreecommitdiffstats
path: root/doc/info/chap/language-facilities.texinfo
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-13 21:24:19 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-13 21:25:22 +0200
commita56e84e4c0541e709d85589f87dbe46aa4f507ed (patch)
tree20acc8f4fbe5cfb593b6e6facffaa0d56a6fa52c /doc/info/chap/language-facilities.texinfo
parentm info (diff)
downloadslibc-a56e84e4c0541e709d85589f87dbe46aa4f507ed.tar.gz
slibc-a56e84e4c0541e709d85589f87dbe46aa4f507ed.tar.bz2
slibc-a56e84e4c0541e709d85589f87dbe46aa4f507ed.tar.xz
info style
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--doc/info/chap/language-facilities.texinfo8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/info/chap/language-facilities.texinfo b/doc/info/chap/language-facilities.texinfo
index 5eb55a3..26cf556 100644
--- a/doc/info/chap/language-facilities.texinfo
+++ b/doc/info/chap/language-facilities.texinfo
@@ -15,7 +15,7 @@ documented in this chapter.
* Member offsets:: Getting the offset of members of a structure.
* Variadic functions:: Support for variadic functions.
* Assertions:: Checking for impossible errors.
-* NULL:: The constant @code{NULL}.
+* NULL:: The constant @code{NULL}@.
@end menu
@@ -192,10 +192,10 @@ defined.
Declaring a variable with the qualifier
@code{alignas(TYPE)} specifies that the variable
-should have the alignment of the type @code{TYPE}.
+should have the alignment of the type @code{TYPE}@.
The function call @code{alignof(TYPE)}, returns
-the alignment of the type @code{TYPE}.
+the alignment of the type @code{TYPE}@.
@@ -424,7 +424,7 @@ Note on considerations of @code{NULL} being harmful:
It is important to remember than @code{sizeof(NULL)}
does not equal @code{sizeof(int)} on all machines.
Therefore, in variadic arguments, it is important
-not to substitute @code{x} for @code{x != NULL}. This
+not to substitute @code{x} for @code{x != NULL}@. This
would cause horrible bugs. If you insist on not
using @code{NULL}, correct substitutions would be
@code{!!x} or @code{x != 0}.