diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2022-11-13 08:55:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 08:55:07 +0000 |
commit | 25c0035ed0614ae334ae034ee90d7898c15e779f (patch) | |
tree | eb5686acac72817bbad04429cac6cd50a05a417f | |
parent | 0b83f9adf66144c10adcb7b2b1aed7ac262daba5 (diff) |
lock: add missing include after 68587e2920b5
This is required on e.g. FreeBSD to define S_IRUSR / S_IWUSR.
-rw-r--r-- | src/lock.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include <stdio.h> #include <string.h> #include <sys/file.h> +#include <sys/stat.h> #include "log.h" #include "xmalloc.h" |