aboutsummaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2024-03-22 01:36:46 -0700
committerMichael Forney <mforney@mforney.org>2024-03-22 01:36:46 -0700
commitf24b8ba07d0b2a5f4d81979aa6812bcdf410a365 (patch)
tree3b527470eccf6013bdbf63b34fa98e0944e28d24 /pp.c
parentc54ba0bc38a2dc49d4090611c60b31aa801e000c (diff)
pp: Fix nullptr keyword
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index a27f7eb..361cf69 100644
--- a/pp.c
+++ b/pp.c
@@ -585,8 +585,8 @@ keyword(struct token *tok)
{"inline", TINLINE},
{"int", TINT},
{"long", TLONG},
- {"register", TREGISTER},
{"nullptr", TNULLPTR},
+ {"register", TREGISTER},
{"restrict", TRESTRICT},
{"return", TRETURN},
{"short", TSHORT},