use <fcntl.h> and not <sys/fcntl.h>

master
Felix von Leitner 20 years ago
parent 538ed02079
commit 27c0b953eb

@ -1,5 +1,5 @@
#include <unistd.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include "open.h"
extern int open_append(const char *filename) {

@ -1,5 +1,5 @@
#include <unistd.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include "open.h"
extern int open_excl(const char *filename) {

@ -1,5 +1,5 @@
#include <unistd.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include "open.h"
extern int open_read(const char *filename) {

@ -1,5 +1,5 @@
#include <unistd.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include "open.h"
extern int open_trunc(const char *filename) {

@ -1,5 +1,5 @@
#include <unistd.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include "open.h"
extern int open_write(const char *filename) {

Loading…
Cancel
Save