Home | History | Annotate | Download | only in include
      1 module cstd [system] {
      2   // Only in compiler support directory
      3   module float_constants {
      4     header "float.h"
      5   }
      6 
      7   // Only in system headers directory
      8   module stdio {
      9     header "stdio.h"
     10   }
     11 
     12   // In both directories (compiler support version wins, does not forward)
     13   module stdbool {
     14     header "stdbool.h"
     15   }
     16 
     17   // In both directories (compiler support version wins, forwards)
     18   module stdint {
     19     header "stdint.h"
     20   }
     21 }
     22