summaryrefslogtreecommitdiff
path: root/ev.c
diff options
context:
space:
mode:
authorroot <root>2010-10-22 09:24:11 +0000
committerroot <root>2010-10-22 09:24:11 +0000
commita845b56899a44cf9b543f861159164777738be37 (patch)
treed0ab94d8ff9d7c719b76e3d042874c650ab023c2 /ev.c
parent952fe6b3afa24195745e5fac8156b7abd2575aae (diff)
*** empty log message ***
Diffstat (limited to 'ev.c')
-rw-r--r--ev.c26
1 files changed, 5 insertions, 21 deletions
diff --git a/ev.c b/ev.c
index 27274b4..a8ab136 100644
--- a/ev.c
+++ b/ev.c
@@ -37,10 +37,6 @@
* either the BSD or the GPL.
*/
-#ifdef __cplusplus
-extern "C" {
-#endif
-
/* this big block deduces configuration from config.h */
#ifndef EV_STANDALONE
# ifdef EV_CONFIG_H
@@ -184,6 +180,8 @@ extern "C" {
# include "ev.h"
#endif
+EV_CPP(extern "C" {)
+
#ifndef _WIN32
# include <sys/time.h>
# include <sys/wait.h>
@@ -413,13 +411,7 @@ extern "C" {
# define EFD_CLOEXEC 02000000
# endif
# endif
-# ifdef __cplusplus
-extern "C" {
-# endif
-int (eventfd) (unsigned int initval, int flags);
-# ifdef __cplusplus
-}
-# endif
+EV_CPP(extern "C") int (eventfd) (unsigned int initval, int flags);
#endif
#if EV_USE_SIGNALFD
@@ -435,19 +427,13 @@ int (eventfd) (unsigned int initval, int flags);
# define SFD_CLOEXEC 02000000
# endif
# endif
-# ifdef __cplusplus
-extern "C" {
-# endif
-int signalfd (int fd, const sigset_t *mask, int flags);
+EV_CPP (extern "C") int signalfd (int fd, const sigset_t *mask, int flags);
struct signalfd_siginfo
{
uint32_t ssi_signo;
char pad[128 - sizeof (uint32_t)];
};
-# ifdef __cplusplus
-}
-# endif
#endif
/**/
@@ -3809,7 +3795,5 @@ ev_walk (EV_P_ int types, void (*cb)(EV_P_ int type, void *w))
#include "ev_wrap.h"
#endif
-#ifdef __cplusplus
-}
-#endif
+EV_CPP(})