diff options
Diffstat (limited to 'include/Config/fcntl.h')
-rw-r--r-- | include/Config/fcntl.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/Config/fcntl.h b/include/Config/fcntl.h new file mode 100644 index 0000000000..267503d6e4 --- /dev/null +++ b/include/Config/fcntl.h @@ -0,0 +1,18 @@ +/* + * Header file: fcntl.h + * + * Description: + * This header file is the autoconf replacement for fcntl.h (if it lives + * on the system). + */ + +#ifndef _CONFIG_FCNTL_H +#define _CONFIG_FCNTL_H + +#include "Config/config.h" + +#ifdef HAVE_FCNTL_H +#include <fcntl.h> +#endif + +#endif |