mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
25 lines
381 B
C
25 lines
381 B
C
#ifndef ACL_TIMED_WAIT_INCLUDE_H
|
|
#define ACL_TIMED_WAIT_INCLUDE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "../acl_define.h"
|
|
#ifdef ACL_UNIX
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
/*
|
|
* External interface.
|
|
*/
|
|
extern int acl_timed_waitpid(pid_t, ACL_WAIT_STATUS_T *, int, int);
|
|
|
|
#endif /* ACL_UNIX */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|