summaryrefslogtreecommitdiff
path: root/src/ivyloop.h
diff options
context:
space:
mode:
authorbustico2011-01-25 17:34:23 +0000
committerbustico2011-01-25 17:34:23 +0000
commit4d42efafcb4d2ffed6af12a1501f65beab3593aa (patch)
treedcccb8acf4c51179ceb68e320e06f2f7efb0a46e /src/ivyloop.h
parent41a7f5cf1783adffd733d9efe12c5bc1a4c5828b (diff)
downloadivy-c-4d42efafcb4d2ffed6af12a1501f65beab3593aa.zip
ivy-c-4d42efafcb4d2ffed6af12a1501f65beab3593aa.tar.gz
ivy-c-4d42efafcb4d2ffed6af12a1501f65beab3593aa.tar.bz2
ivy-c-4d42efafcb4d2ffed6af12a1501f65beab3593aa.tar.xz
fix some files so they can be compiled with g++ without warning(s)
Diffstat (limited to 'src/ivyloop.h')
-rw-r--r--src/ivyloop.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ivyloop.h b/src/ivyloop.h
index 5639495..ff1b920 100644
--- a/src/ivyloop.h
+++ b/src/ivyloop.h
@@ -56,10 +56,10 @@ extern void IvyMainLoop(void);
typedef void ( *IvyHookPtr) ( void *data );
-extern void IvyChannelAddWritableEvent(Channel channel);
-extern void IvyChannelClearWritableEvent(Channel channel);
-extern void IvySetBeforeSelectHook(IvyHookPtr before, void *data );
-extern void IvySetAfterSelectHook(IvyHookPtr after, void *data );
+void IvyChannelAddWritableEvent(Channel channel);
+void IvyChannelClearWritableEvent(Channel channel);
+void IvySetBeforeSelectHook(IvyHookPtr before, void *data );
+void IvySetAfterSelectHook(IvyHookPtr after, void *data );
#ifdef __cplusplus
}