fix some non-Mac declarations

svn: r13017
This commit is contained in:
Matthew Flatt 2009-01-06 13:15:51 +00:00
parent 61685c72f9
commit e3040e5799

View File

@ -8391,8 +8391,12 @@ END_XFORM_SKIP;
#else
void scheme_start_sleeper_thread(void *fds, int hit_fd);
void scheme_end_sleeper_thread();
void scheme_start_sleeper_thread(void (*given_sleep)(float seconds, void *fds), float secs, void *fds, int hit_fd)
{
}
void scheme_end_sleeper_thread()
{
}
#endif