aboutsummaryrefslogtreecommitdiff
path: root/iemnet_notify.c
diff options
context:
space:
mode:
Diffstat (limited to 'iemnet_notify.c')
-rw-r--r--iemnet_notify.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/iemnet_notify.c b/iemnet_notify.c
index df1c9eb..6bf6a1b 100644
--- a/iemnet_notify.c
+++ b/iemnet_notify.c
@@ -33,19 +33,19 @@
/* for printf() debugging */
#include <stdio.h>
-typedef struct _iemnet_notify{
+struct _iemnet_notify {
void*data;
t_iemnet_notifun fun;
struct _iemnet_notifier*parent;
struct _iemnet_notify*next;
-} t_iemnet_notify;
+};
static t_iemnet_notify*pollqueue=NULL;
-typedef struct _iemnet_notifier {
+struct _iemnet_notifier {
int fd[2];
struct _iemnet_notify*nodes;
-} t_iemnet_notifier;
+};
static t_iemnet_notifier *masternotifier = NULL;