added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / include / libraries / thread.h
blobe1a9ac4a92dc10bfa9da4e7d3f3f5cf19b347e52
1 #ifndef LIBRARIES_THREAD_H
2 #define LIBRARIES_THREAD_H 1
4 typedef void * (*ThreadEntryFunction)(void *);
6 #endif