summaryrefslogtreecommitdiff
path: root/sys/src
diff options
context:
space:
mode:
authorJacob Moody <moody@posixcafe.org>2023-03-17 16:46:14 +0000
committerJacob Moody <moody@posixcafe.org>2023-03-17 16:46:14 +0000
commit655d7e26e72a486b783820fe161a7a06eaa92078 (patch)
treea3742c05be1a67af37cea936cd4b9972758280ba /sys/src
parentf40225e86cf4b92cab975d9121ff06ed5cfe9d91 (diff)
cc: NORET -> _Noreturn
The committee has spoken
Diffstat (limited to 'sys/src')
-rw-r--r--sys/src/cmd/cc/lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/cc/lex.c b/sys/src/cmd/cc/lex.c
index 01107318e..0bf81fe48 100644
--- a/sys/src/cmd/cc/lex.c
+++ b/sys/src/cmd/cc/lex.c
@@ -1209,7 +1209,7 @@ struct
"inline", LINLINE, 0,
"int", LINT, TINT,
"long", LLONG, TLONG,
- "NORET", LNORET, 0,
+ "_Noreturn", LNORET, 0,
"register", LREGISTER, 0,
"restrict", LRESTRICT, 0,
"return", LRETURN, 0,