diff options
| author | manuel <manuel@mausz.at> | 2024-11-28 13:32:32 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2024-11-28 13:32:32 +0100 |
| commit | ec29722d8b6b90d1a0368542a5de991599e30adc (patch) | |
| tree | 5b5919c30f822ef83d3ce6f34998baeaacd17d14 /install.h | |
| parent | a8ea6ba381e79e4198338f5721bbaa3679da5cb9 (diff) | |
| download | qmail-ec29722d8b6b90d1a0368542a5de991599e30adc.tar.gz qmail-ec29722d8b6b90d1a0368542a5de991599e30adc.tar.bz2 qmail-ec29722d8b6b90d1a0368542a5de991599e30adc.zip | |
Fix `implicit declaration of function` in install-big/hier
Diffstat (limited to 'install.h')
| -rw-r--r-- | install.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/install.h b/install.h new file mode 100644 index 0000000..861be9b --- /dev/null +++ b/install.h | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #ifndef install_h | ||
| 2 | #define install_h | ||
| 3 | |||
| 4 | #include <sys/types.h> | ||
| 5 | |||
| 6 | void h(const char *home, uid_t uid, gid_t gid, mode_t mode); | ||
| 7 | void d(const char *home, const char *subdir, uid_t uid, gid_t gid, mode_t mode); | ||
| 8 | void p(const char *home, const char *fifo, uid_t uid, gid_t gid, mode_t mode); | ||
| 9 | void c(const char *home, const char *subdir, const char *file, uid_t uid, gid_t gid, mode_t mode); | ||
| 10 | void z(const char *home, const char *file, size_t len, uid_t uid, gid_t gid, mode_t mode); | ||
| 11 | |||
| 12 | #endif | ||
