diff options
author | Akira Yokosawa <akiyks@gmail.com> | 2022-10-15 11:22:01 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2022-10-24 19:27:51 +0200 |
commit | 2f3f53d62307262f0086804ea7cea99b0e085450 (patch) | |
tree | 1c55abc7af32d2cf9d0145f9351508b9f1f3b89a /Documentation/translations/ja_JP | |
parent | Documentation: Fix spelling mistake in hacking.rst (diff) | |
download | linux-2f3f53d62307262f0086804ea7cea99b0e085450.tar.xz linux-2f3f53d62307262f0086804ea7cea99b0e085450.zip |
docs/process/howto: Replace C89 with C11
Commit e8c07082a810 ("Kbuild: move to -std=gnu11") updated
process/programming-language.rst, but failed to update
process/howto.rst.
Update howto.rst and resolve the inconsistency.
Fixes: e8c07082a810 ("Kbuild: move to -std=gnu11")
Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Federico Vaga <federico.vaga@vaga.pv.it>
Cc: Alex Shi <alexs@kernel.org>
Cc: Hu Haowen <src.res@email.cn>
Cc: Tsugikazu Shibata <shibata@linuxfoundation.org>
Link: https://lore.kernel.org/r/20221015092201.32099-1-akiyks@gmail.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/translations/ja_JP')
-rw-r--r-- | Documentation/translations/ja_JP/howto.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/translations/ja_JP/howto.rst b/Documentation/translations/ja_JP/howto.rst index b47a682d8ded..b8eeb45a02d4 100644 --- a/Documentation/translations/ja_JP/howto.rst +++ b/Documentation/translations/ja_JP/howto.rst @@ -65,7 +65,7 @@ Linux カーネル開発のやり方 - 『新・詳説 C 言語 H&S リファレンス』 (サミュエル P ハービソン/ガイ L スティール共著 斉藤 信男監訳)[ソフトバンク] カーネルは GNU C と GNU ツールチェインを使って書かれています。カーネル -は ISO C89 仕様に準拠して書く一方で、標準には無い言語拡張を多く使って +は ISO C11 仕様に準拠して書く一方で、標準には無い言語拡張を多く使って います。カーネルは標準 C ライブラリに依存しない、C 言語非依存環境です。 そのため、C の標準の中で使えないものもあります。特に任意の long long の除算や浮動小数点は使えません。カーネルがツールチェインや C 言語拡張 |