diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-20 18:08:48 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-20 18:39:51 -0700 |
commit | 3be663812bd6cc94107b8ff8425246441795f30f (patch) | |
tree | 2603ff0d62e26595c64235dc2285ad35c918f666 /doc/extensions.md | |
parent | 772f529200cdaabf8e177c0beb80fd661f731198 (diff) |
doc: Don't make headings links
It doesn't look that good when rendered.
Diffstat (limited to 'doc/extensions.md')
-rw-r--r-- | doc/extensions.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/extensions.md b/doc/extensions.md index ad7b30d..e3f9085 100644 --- a/doc/extensions.md +++ b/doc/extensions.md @@ -5,7 +5,7 @@ may be implemented in the future. ## Implemented -### [`__typeof__`] +### `__typeof__` `__typeof__(E)` is a type specifier for the type of expression `E`. Arrays and function designator expressions do not decay into pointers, just @@ -27,7 +27,7 @@ like when used with `sizeof`. ## Missing -### [Statement expressions] +### Statement expressions In GNU C, you may use a compound statement as expressions when they are enclosed in parentheses. The last statement in the compound statement @@ -58,6 +58,4 @@ in which case the first operand is used. So `E1 ? : E2` behaves the same as `E1 ? E1 : E2`, except that `E1` is evaluated only once. [GNU extensions]: https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html -[`__typeof__`]: https://gcc.gnu.org/onlinedocs/gcc/Typeof.html [`__builtin_offsetof`]: https://gcc.gnu.org/onlinedocs/gcc/Offsetof.html -[Statement expressions]: https://gcc.gnu.org/onlinedocs/gcc/Statement-Exprs.html |