summaryrefslogtreecommitdiffstats
path: root/src/basic/macro.h
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2021-10-26 11:07:39 +0200
committerJan Janssen <medhefgo@web.de>2021-11-04 18:37:07 +0100
commita8a7723ba9d76bd97dd9ef882c772644bd241d3b (patch)
tree102909be681fb0c5db30b08ef66af747d3b00612 /src/basic/macro.h
parentsd-boot: Always compile with -ffreestanding and -fshort-wchar (diff)
downloadsystemd-a8a7723ba9d76bd97dd9ef882c772644bd241d3b.tar.xz
systemd-a8a7723ba9d76bd97dd9ef882c772644bd241d3b.zip
sd-boot: Move flags helpers to macro-fundamental.h
Diffstat (limited to 'src/basic/macro.h')
-rw-r--r--src/basic/macro.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/basic/macro.h b/src/basic/macro.h
index 03a0d061b8..aa04039e80 100644
--- a/src/basic/macro.h
+++ b/src/basic/macro.h
@@ -328,13 +328,6 @@ static inline int __coverity_check_and_return__(int condition) {
ans; \
})
-#define UPDATE_FLAG(orig, flag, b) \
- ((b) ? ((orig) | (flag)) : ((orig) & ~(flag)))
-#define SET_FLAG(v, flag, b) \
- (v) = UPDATE_FLAG(v, flag, b)
-#define FLAGS_SET(v, flags) \
- ((~(v) & (flags)) == 0)
-
#define SWAP_TWO(x, y) do { \
typeof(x) _t = (x); \
(x) = (y); \