summaryrefslogtreecommitdiffstats
path: root/Documentation/translations/ja_JP
diff options
context:
space:
mode:
authorAkira Yokosawa <akiyks@gmail.com>2022-10-15 18:22:01 +0900
committerJonathan Corbet <corbet@lwn.net>2022-10-24 11:27:51 -0600
commit2f3f53d62307262f0086804ea7cea99b0e085450 (patch)
tree1c55abc7af32d2cf9d0145f9351508b9f1f3b89a /Documentation/translations/ja_JP
parente648174b53f1e29ee72ef33756a97ffb8241b6a5 (diff)
downloadlinux-stable-2f3f53d62307262f0086804ea7cea99b0e085450.tar.gz
linux-stable-2f3f53d62307262f0086804ea7cea99b0e085450.tar.bz2
linux-stable-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.rst2
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 言語拡張