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

master
leitner 21 years ago
parent 35e0e1a7c0
commit 4ef284ccd5

@ -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