repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
compiler
/
include
/
libraries
/
thread.h
blob
e1a9ac4a92dc10bfa9da4e7d3f3f5cf19b347e52
1
#ifndef LIBRARIES_THREAD_H
2
#define LIBRARIES_THREAD_H 1
3
4
typedef
void
* (*
ThreadEntryFunction
)(
void
*);
5
6
#endif