diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:45:00 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:45:53 +0100 |
commit | 4e036b7a96b7a72461bdb68ded304041e892b8eb (patch) | |
tree | 8b1b79bb8e1ca4e715f1fd6ec3e643567e690996 /src/basic/util.h | |
parent | 5e524b404b7b319aa6a24bf21132b1074b206996 (diff) |
mount-util: move fstype_is_network() and name_to_handle_at() definitions over
Diffstat (limited to 'src/basic/util.h')
-rw-r--r-- | src/basic/util.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/basic/util.h b/src/basic/util.h index e2fceafd9a..fc329a869b 100644 --- a/src/basic/util.h +++ b/src/basic/util.h @@ -66,8 +66,6 @@ static inline const char* one_zero(bool b) { return b ? "1" : "0"; } -bool fstype_is_network(const char *fstype); - noreturn void freeze(void); void execute_directories(const char* const* directories, usec_t timeout, char *argv[]); @@ -202,12 +200,6 @@ const char *personality_to_string(unsigned long); uint64_t physical_memory(void); -union file_handle_union { - struct file_handle handle; - char padding[sizeof(struct file_handle) + MAX_HANDLE_SZ]; -}; -#define FILE_HANDLE_INIT { .handle.handle_bytes = MAX_HANDLE_SZ } - int update_reboot_param_file(const char *param); #define INOTIFY_EVENT_MAX (sizeof(struct inotify_event) + NAME_MAX + 1) |