From 3157940c0b59ff3726596afcf67de8810088e220 Mon Sep 17 00:00:00 2001 From: fedir Date: Tue, 15 Apr 2025 18:58:18 +0200 Subject: [PATCH] add a missing header --- src/access_t.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/access_t.h diff --git a/src/access_t.h b/src/access_t.h new file mode 100644 index 0000000..915f4ad --- /dev/null +++ b/src/access_t.h @@ -0,0 +1,6 @@ +#ifndef ACCESS_T_H +#define ACCESS_T_H + +typedef enum { DENY, ALLOW, ALLOW_TEMP, NDEF } access_t; + +#endif // !ACCESS_T_H