Solved the big mystery in Ingo's life: in C, func(); and func(void); is not the same.

This fixes the "missing prototype" warnings.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11627 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2005-03-09 01:42:37 +00:00
parent cb01a20237
commit db75a08b98
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -55,8 +55,8 @@ thread_get_current_thread_id(void)
return t ? t->id : 0;
}
thread_id allocate_thread_id();
thread_id peek_next_thread_id();
thread_id allocate_thread_id(void);
thread_id peek_next_thread_id(void);
thread_id spawn_kernel_thread_etc(thread_func, const char *name, int32 priority,
void *args, team_id team, thread_id threadID);