mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 17:30:53 +08:00
9697f95b8f
This reverts commit 15d999759e
.
35 lines
487 B
C
35 lines
487 B
C
#ifndef ACL_OPEN_LOCK_INCLUDE_H
|
|
#define ACL_OPEN_LOCK_INCLUDE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "../acl_define.h"
|
|
|
|
#ifdef ACL_UNIX
|
|
/*
|
|
* System library.
|
|
*/
|
|
#include <fcntl.h>
|
|
|
|
/*
|
|
* Utility library.
|
|
*/
|
|
#include "../acl_vstream.h"
|
|
#include "../acl_vstring.h"
|
|
|
|
/*
|
|
* External interface.
|
|
*/
|
|
extern ACL_VSTREAM *acl_open_lock(const char *, int, int, ACL_VSTRING *);
|
|
|
|
#endif /* ACL_UNIX */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|