diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-08-15 12:33:46 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-08-16 12:33:46 +0200 |
commit | f6f3a4daabb3d4abe437cddd09fca9ffba78449e (patch) | |
tree | 6321bcdf74343e20e0d13d1d9eff3ad3d6f8b8e0 /utils.c | |
parent | 762e6d36bf502cc6445814064fb46f6a8f069c82 (diff) |
Extended analyse application to write global stats to a CSV.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,3 @@ -#include "utils.h" - #include <errno.h> #include <fcntl.h> #include <grp.h> @@ -15,6 +13,8 @@ #include <sys/types.h> #include <unistd.h> +#include "utils.h" + typedef char pid_str[16]; static char const * app_name = NULL; |