17 lines
235 B
Plaintext
17 lines
235 B
Plaintext
module cstd [system] {
|
|
// Only in system headers directory
|
|
module stdio {
|
|
header "stdio.h"
|
|
}
|
|
|
|
module pthread {
|
|
header "pthread.h"
|
|
export *
|
|
|
|
module impl {
|
|
header "pthread_impl.h"
|
|
export *
|
|
}
|
|
}
|
|
}
|