summaryrefslogtreecommitdiff
path: root/src/systemd
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-08-10 17:58:46 +0200
committerLennart Poettering <lennart@poettering.net>2012-08-10 17:58:46 +0200
commit8e4e8df5ea6bdb93ed67a0340ac711acc39d5193 (patch)
tree8d75acf75e2f709b58563911b3cdbd1fa92d5e1a /src/systemd
parentcee5e9a7ca75f05d4a0f7759566e657587a500d5 (diff)
id128: don't use C99 bool in public headers
Diffstat (limited to 'src/systemd')
-rw-r--r--src/systemd/sd-id128.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/systemd/sd-id128.h b/src/systemd/sd-id128.h
index 7d5e6c440..27fa47942 100644
--- a/src/systemd/sd-id128.h
+++ b/src/systemd/sd-id128.h
@@ -23,7 +23,6 @@
***/
#include <inttypes.h>
-#include <stdbool.h>
#include <string.h>
#ifdef __cplusplus
@@ -60,7 +59,7 @@ int sd_id128_get_boot(sd_id128_t *ret);
#define SD_ID128_FORMAT_STR "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
#define SD_ID128_FORMAT_VAL(x) (x).bytes[0], (x).bytes[1], (x).bytes[2], (x).bytes[3], (x).bytes[4], (x).bytes[5], (x).bytes[6], (x).bytes[7], (x).bytes[8], (x).bytes[9], (x).bytes[10], (x).bytes[11], (x).bytes[12], (x).bytes[13], (x).bytes[14], (x).bytes[15]
-static inline bool sd_id128_equal(sd_id128_t a, sd_id128_t b) {
+static inline int sd_id128_equal(sd_id128_t a, sd_id128_t b) {
return memcmp(&a, &b, 16) == 0;
}