Skip to content

Commit

Permalink
fix: use POSIX <fcntl.h> instead of <sys/fcntl.h> (orioledb#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImreSamu authored Dec 16, 2024
1 parent b7645ea commit def5b5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/s3/control.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#include "postgres.h"

#include <sys/fcntl.h>
#include <fcntl.h>
#include <sys/time.h>
#include <unistd.h>

Expand Down
2 changes: 1 addition & 1 deletion src/s3/worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "pgstat.h"

#include "openssl/sha.h"
#include <sys/fcntl.h>
#include <fcntl.h>
#include <unistd.h>


Expand Down

0 comments on commit def5b5e

Please sign in to comment.