diff options
author | Himbeer <himbeer@disroot.org> | 2025-05-08 15:00:57 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2025-05-08 15:00:57 +0200 |
commit | 6876ed65ecb90e3422c392d2158856a24b7acb00 (patch) | |
tree | 5b09cf3be74b98eb311b8e5fd90d60ef090acc42 | |
parent | 8349a65210cc0eaff603bcd2445786493221fc15 (diff) |
Prefix bitwise assignment operations with B
-rw-r--r-- | include/parse.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/parse.h b/include/parse.h index ab9f684..68cf6c0 100644 --- a/include/parse.h +++ b/include/parse.h @@ -65,9 +65,9 @@ enum stmt { S_MULASSIGN, S_DIVASSIGN, S_REMASSIGN, - S_ANDASSIGN, - S_ORASSIGN, - S_XORASSIGN, + S_BANDASSIGN, + S_BORASSIGN, + S_BXORASSIGN, S_INCR, S_DECR, S_IF, |