ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-fcntl.h
Go to the documentation of this file.
1 #ifndef SIMU_FCNTL_H
2 #define SIMU_FCNTL_H
3 
4 #include <stdarg.h>
5 #include <fcntl.h>
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 int dce_open (const char *path, int flags, ...);
12 int dce_open64 (const char *path, int flags, ...);
13 int dce_creat (const char *path, mode_t mode);
14 int dce_fcntl (int fd, int cmd, ...);
15 int dce_unlinkat (int dirfd, const char *pathname, int flags);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* SIMU_FCNTL_H */