| 1 | module cstd [system] { |
|---|---|
| 2 | // Only in system headers directory |
| 3 | module stdio { |
| 4 | header "stdio.h" |
| 5 | } |
| 6 | |
| 7 | module pthread { |
| 8 | header "pthread.h" |
| 9 | export * |
| 10 | |
| 11 | module impl { |
| 12 | header "pthread_impl.h" |
| 13 | export * |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 |
| 1 | module cstd [system] { |
|---|---|
| 2 | // Only in system headers directory |
| 3 | module stdio { |
| 4 | header "stdio.h" |
| 5 | } |
| 6 | |
| 7 | module pthread { |
| 8 | header "pthread.h" |
| 9 | export * |
| 10 | |
| 11 | module impl { |
| 12 | header "pthread_impl.h" |
| 13 | export * |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 |