12 lines
210 B
C
12 lines
210 B
C
#ifndef EPOLL_UTIL_H_
|
|
#define EPOLL_UTIL_H_
|
|
|
|
#ifndef _SSIZE_T_DEFINED
|
|
#define SSIZE_T_DEFINED
|
|
typedef intptr_t ssize_t;
|
|
#endif
|
|
|
|
#define ARRAY_COUNT(a) (sizeof(a) / (sizeof((a)[0])))
|
|
|
|
#endif /* EPOLL_UTIL_H_ */
|