From 98482768f2ce82fa712f734943245a29ce8d1c45 Mon Sep 17 00:00:00 2001 From: Ole Morud Date: Tue, 11 Nov 2025 01:58:32 +0100 Subject: [PATCH] Fix --- os.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/os.c b/os.c index 3f18cd4..187063d 100644 --- a/os.c +++ b/os.c @@ -7,13 +7,7 @@ #include "s8slice.h" #include - -enum { - OS_READ = 1<<0, - OS_WRITE = 1<<1, - OS_ALLFLAGS = (1<<2)-1 -}; -typedef unsigned int os_open_flags; +#include "os.h" S8Slice os_open_file(S8Slice path, os_open_flags flags) {