mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
20 lines
296 B
C
20 lines
296 B
C
#ifndef ACL_SANE_SOCKETPAIR_H
|
|
#define ACL_SANE_SOCKETPAIR_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "acl_define.h"
|
|
|
|
/* External interface. */
|
|
|
|
int acl_sane_socketpair(int domain, int type, int protocol, ACL_SOCKET result[2]);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|