Remove unnecessary function

This commit is contained in:
Ryan Dahl 2011-05-09 09:18:15 -07:00
parent ad64eb4856
commit 4eb2c6b3f2

View File

@ -304,12 +304,10 @@ void rewind_cursor() {
fprintf(stderr, "\033[2K\r");
}
void* oio__thread_start(void* arg) {
}
typedef void* (*oio_thread_cb)(void* arg);
uintptr_t oio_create_thread(void (*entry)(void* arg), void* arg) {
pthread_t t;
oio_thread_cb cb = (oio_thread_cb)entry;