]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
stat-util.h: move F_TYPE_EQUAL() macro definition to stat-util.h
authorLennart Poettering <lennart@poettering.net>
Tue, 27 Oct 2015 00:26:52 +0000 (01:26 +0100)
committerLennart Poettering <lennart@poettering.net>
Tue, 27 Oct 2015 12:25:58 +0000 (13:25 +0100)
src/basic/btrfs-util.c
src/basic/cgroup-util.c
src/basic/macro.h
src/basic/stat-util.h

index 7b49a1a5162d9341bb5cd0dfe4ad47b38db5b9d7..7457e9f2181e551b89580cddc97c7882cfaf8dd4 100644 (file)
@@ -36,6 +36,7 @@
 #include "path-util.h"
 #include "selinux-util.h"
 #include "smack-util.h"
+#include "stat-util.h"
 #include "string-util.h"
 #include "util.h"
 
index cfbeab741104862ed73d1b4f94b544083704fe26..0f0e144b5e28ccd3084c8aa9670d4cadcd353c2e 100644 (file)
 #include "mkdir.h"
 #include "parse-util.h"
 #include "path-util.h"
+#include "proc-cmdline.h"
 #include "process-util.h"
 #include "set.h"
 #include "special.h"
+#include "stat-util.h"
 #include "string-table.h"
 #include "string-util.h"
 #include "unit-name.h"
 #include "user-util.h"
 #include "util.h"
-#include "proc-cmdline.h"
 
 int cg_enumerate_processes(const char *controller, const char *path, FILE **_f) {
         _cleanup_free_ char *fs = NULL;
index acd67feabbf3c1c4a24553fdb63ec2e84bee9ccd..975714da2baa50248cb64aae55ecbe4f0b4499b2 100644 (file)
@@ -301,12 +301,6 @@ static inline unsigned long ALIGN_POWER2(unsigned long u) {
 
 #define char_array_0(x) x[sizeof(x)-1] = 0;
 
- /* Because statfs.t_type can be int on some architectures, we have to cast
-  * the const magic to the type, otherwise the compiler warns about
-  * signed/unsigned comparison, because the magic can be 32 bit unsigned.
- */
-#define F_TYPE_EQUAL(a, b) (a == (typeof(a)) b)
-
 /* Returns the number of chars needed to format variables of the
  * specified type as a decimal string. Adds in extra space for a
  * negative '-' prefix (hence works correctly on signed
index cb00e0f564c5a311a1b176cd78011c758dbadf76..82edea06a8a77df5530ad6ed8b953d1f688afd2c 100644 (file)
@@ -61,3 +61,9 @@ int path_check_fstype(const char *path, statfs_f_type_t magic_value);
 
 bool is_temporary_fs(const struct statfs *s) _pure_;
 int fd_is_temporary_fs(int fd);
+
+/* Because statfs.t_type can be int on some architectures, we have to cast
+ * the const magic to the type, otherwise the compiler warns about
+ * signed/unsigned comparison, because the magic can be 32 bit unsigned.
+ */
+#define F_TYPE_EQUAL(a, b) (a == (typeof(a)) b)