]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
memfd-util: make memfd_add/get_seals() static
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 2 Apr 2025 20:36:25 +0000 (05:36 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 2 Apr 2025 21:01:31 +0000 (06:01 +0900)
src/basic/memfd-util.c
src/basic/memfd-util.h

index 70ffa93a78f2a41d27629ca351083ace4232bb54..2e1125b867f4bf2a14485b4549c2e6d593ff6174 100644 (file)
@@ -72,13 +72,13 @@ int memfd_new_full(const char *name, unsigned extra_flags) {
                         MFD_CLOEXEC | MFD_NOEXEC_SEAL | extra_flags);
 }
 
-int memfd_add_seals(int fd, unsigned seals) {
+static int memfd_add_seals(int fd, unsigned seals) {
         assert(fd >= 0);
 
         return RET_NERRNO(fcntl(fd, F_ADD_SEALS, seals));
 }
 
-int memfd_get_seals(int fd, unsigned *ret_seals) {
+static int memfd_get_seals(int fd, unsigned *ret_seals) {
         int r;
 
         assert(fd >= 0);
index 9052ff29716f9b0bf6d0522715542b2b1af60b29..d7220d085dad9e6253fcfbcde54793c7e917c701 100644 (file)
@@ -20,9 +20,6 @@ static inline int memfd_new_and_seal_string(const char *name, const char *s) {
         return memfd_new_and_seal(name, s, SIZE_MAX);
 }
 
-int memfd_add_seals(int fd, unsigned seals);
-int memfd_get_seals(int fd, unsigned *ret_seals);
-
 int memfd_set_sealed(int fd);
 int memfd_get_sealed(int fd);