FreeBASIC  0.91.0
thread_core.c
Go to the documentation of this file.
1 /* thread creation and destruction functions */
2 
3 #include "../fb.h"
4 
5 FBCALL FBTHREAD *fb_ThreadCreate( FB_THREADPROC proc, void *param, ssize_t stack_size )
6 {
7  return NULL;
8 }
9 
11 {
12 }