Skip to content

Commit f8d54f7

Browse files
SoapGentookeszybz
authored andcommitted
Use correct <fcntl.h> include
* `<sys/fcntl.h>` is not specified in POSIX
1 parent b98855d commit f8d54f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/basic/fileio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
#pragma once
33

44
#include <dirent.h>
5+
#include <fcntl.h>
56
#include <stdbool.h>
67
#include <stddef.h>
78
#include <stdio.h>
89
#include <sys/stat.h>
9-
#include <sys/fcntl.h>
1010
#include <sys/types.h>
1111

1212
#include "macro.h"

0 commit comments

Comments
 (0)