summaryrefslogtreecommitdiff
path: root/src/basic
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-05-10 03:22:16 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-05-10 15:06:24 +0900
commitbc52801034e9e33d7aab0cb64c84f64cd9d4c035 (patch)
tree50a9d289982a0c943d572f112026627e3378262a /src/basic
parenteb29296937b268e0140a2ab1cf204c2ebb72fa5a (diff)
downloadsystemd-bc52801034e9e33d7aab0cb64c84f64cd9d4c035.tar.gz
tree-wide: drop _pure_ attribute from non-pure functions
Prompted by #27595. Follow-ups for 6723c28f36ea566faf61d3610012cd89f95ee4a0.
Diffstat (limited to 'src/basic')
-rw-r--r--src/basic/hash-funcs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/hash-funcs.h b/src/basic/hash-funcs.h
index c14302ec72..be64289252 100644
--- a/src/basic/hash-funcs.h
+++ b/src/basic/hash-funcs.h
@@ -102,7 +102,7 @@ extern const struct hash_ops uint64_hash_ops;
/* On some archs dev_t is 32bit, and on others 64bit. And sometimes it's 64bit on 32bit archs, and sometimes 32bit on
* 64bit archs. Yuck! */
#if SIZEOF_DEV_T != 8
-void devt_hash_func(const dev_t *p, struct siphash *state) _pure_;
+void devt_hash_func(const dev_t *p, struct siphash *state);
#else
#define devt_hash_func uint64_hash_func
#endif