diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-04-06 18:06:58 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-04-06 18:10:39 +0530 |
commit | 59831e558edccc86338d0fb24d28025ec6159cc1 (patch) | |
tree | ddb02a0514c173233d5970be23126c676dfb4cdf /include/util.h | |
parent | 53a9bd75b4935cecd25edae72ad2f028013d8648 (diff) |
meson: split ./include
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/util.h b/include/util.h index f36965a..b6c64e0 100644 --- a/include/util.h +++ b/include/util.h @@ -1,7 +1,4 @@ -#ifndef UTIL_H - #include <stdio.h> -#include <stdlib.h> #define err_die(r, ...) {\ fprintf(stderr, "%s:%d: ", __FILE__, __LINE__); \ @@ -9,10 +6,3 @@ fputc('\n', stderr); \ return r; \ } - -int r_mkdir(const char *path, mode_t mode); -int r_rmdir(const char *prefix_path, char *rm_path); -void util_strtrim(char *s); - -#define UTIL_H -#endif |