blob: 8ed6444e814b61f32ac4293d083fe727d066f164 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// $Id: file.h,v 1.2 1993/08/02 17:21:37 mycroft Exp $
#ifndef __libgxx_sys_file_h
extern "C"
{
#ifdef __sys_file_h_recursive
#include_next <sys/file.h>
#else
#define fcntl __hide_fcntl
#define open __hide_open
#define creat __hide_creat
#define __sys_file_h_recursive
#ifdef VMS
#include "GNU_CC_INCLUDE:[sys]file.h"
#else
#include_next <sys/file.h>
#endif
#undef fcntl
#undef open
#undef creat
#define __libgxx_sys_file_h 1
#endif
}
#endif
|