]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/basic/capability-util.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / basic / capability-util.h
index 35a896e229fa0ef3544fc96239030554488bf33f..fd9370ecb73fc538d144229a4e47797e25f26354 100644 (file)
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
 #pragma once
 
 /***
@@ -55,3 +56,5 @@ static inline bool cap_test_all(uint64_t caps) {
         m = (UINT64_C(1) << (cap_last_cap() + 1)) - 1;
         return (caps & m) == m;
 }
+
+bool ambient_capabilities_supported(void);