blob: b5a219d28c922e79a3d2812d12634edddabaa3e3 [file] [log] [blame]
Eric Fiselier62b959c2016-12-08 06:37:41 +00001// define the module for __config outside of the top level 'std' module
2// since __config may be included from C headers which may create an
3// include cycle.
4module std_config [system] [extern_c] {
5 header "__config"
6}
7
Richard Smith31cfef02014-05-21 00:33:49 +00008module std [system] {
Eric Fiselier62b959c2016-12-08 06:37:41 +00009 export std_config
Richard Smith31cfef02014-05-21 00:33:49 +000010 // FIXME: The standard does not require that each of these submodules
11 // re-exports its imported modules. We should provide an alternative form of
12 // export that issues a warning if a name from the submodule is used, and
13 // use that to provide a 'strict mode' for libc++.
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000014
15 // Deprecated C-compatibility headers. These can all be included from within
16 // an 'extern "C"' context.
17 module depr [extern_c] {
18 // <assert.h> provided by C library.
19 module ctype_h {
20 header "ctype.h"
21 export *
22 }
23 module errno_h {
24 header "errno.h"
25 export *
26 }
Eric Fiselier5dddf722019-02-11 23:47:19 +000027 module fenv_h {
28 header "fenv.h"
29 export *
30 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000031 // <float.h> provided by compiler or C library.
32 module inttypes_h {
33 header "inttypes.h"
34 export stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000035 export *
36 }
37 // <iso646.h> provided by compiler.
38 // <limits.h> provided by compiler or C library.
Eric Fiselierc6213332016-11-19 01:14:15 +000039 module locale_h {
40 header "locale.h"
Eric Fiselierc6213332016-11-19 01:14:15 +000041 export *
42 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000043 module math_h {
44 header "math.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000045 export *
46 }
47 module setjmp_h {
48 header "setjmp.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000049 export *
50 }
51 // FIXME: <stdalign.h> is missing.
52 // <signal.h> provided by C library.
53 // <stdarg.h> provided by compiler.
Eric Fiselier5163fa12016-12-06 09:48:32 +000054 // <stdbool.h> provided by compiler.
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000055 module stddef_h {
56 // <stddef.h>'s __need_* macros require textual inclusion.
57 textual header "stddef.h"
58 }
Eric Fiseliercbda4fb2016-11-22 20:05:19 +000059 module stdint_h {
60 header "stdint.h"
61 export *
62 // FIXME: This module only exists on OS X and for some reason the
63 // wildcard above doesn't export it.
64 export Darwin.C.stdint
65 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000066 module stdio_h {
67 // <stdio.h>'s __need_* macros require textual inclusion.
68 textual header "stdio.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000069 export *
Eric Fiselier3b733092016-12-06 07:40:46 +000070 export Darwin.C.stdio
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000071 }
72 module stdlib_h {
73 // <stdlib.h>'s __need_* macros require textual inclusion.
74 textual header "stdlib.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000075 export *
76 }
77 module string_h {
78 header "string.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000079 export *
80 }
81 // FIXME: <uchar.h> is missing.
82 // <time.h> provided by C library.
83 module wchar_h {
84 // <wchar.h>'s __need_* macros require textual inclusion.
85 textual header "wchar.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000086 export *
87 }
88 module wctype_h {
89 header "wctype.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000090 export *
91 }
92 }
93
94 // <complex.h> and <tgmath.h> are not C headers in any real sense, do not
95 // allow their use in extern "C" contexts.
96 module complex_h {
97 header "complex.h"
98 export ccomplex
99 export *
100 }
101 module tgmath_h {
102 header "tgmath.h"
103 export ccomplex
104 export cmath
105 export *
106 }
107
108 // C compatibility headers.
109 module compat {
110 module cassert {
111 // <cassert>'s use of NDEBUG requires textual inclusion.
112 textual header "cassert"
113 }
114 module ccomplex {
115 header "ccomplex"
116 export complex
117 export *
118 }
119 module cctype {
120 header "cctype"
121 export *
122 }
123 module cerrno {
124 header "cerrno"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000125 export *
126 }
127 module cfenv {
128 header "cfenv"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000129 export *
130 }
131 module cfloat {
132 header "cfloat"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000133 export *
134 }
135 module cinttypes {
136 header "cinttypes"
137 export cstdint
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000138 export *
139 }
140 module ciso646 {
141 header "ciso646"
142 export *
143 }
144 module climits {
145 header "climits"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000146 export *
147 }
148 module clocale {
149 header "clocale"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000150 export *
151 }
152 module cmath {
153 header "cmath"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000154 export *
155 }
156 module csetjmp {
157 header "csetjmp"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000158 export *
159 }
160 module csignal {
161 header "csignal"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000162 export *
163 }
164 // FIXME: <cstdalign> is missing.
165 module cstdarg {
166 header "cstdarg"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000167 export *
168 }
169 module cstdbool {
170 header "cstdbool"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000171 export *
172 }
173 module cstddef {
174 header "cstddef"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000175 export *
176 }
177 module cstdint {
178 header "cstdint"
Eric Fiseliercbda4fb2016-11-22 20:05:19 +0000179 export depr.stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000180 export *
181 }
182 module cstdio {
183 header "cstdio"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000184 export *
185 }
186 module cstdlib {
187 header "cstdlib"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000188 export *
189 }
190 module cstring {
191 header "cstring"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000192 export *
193 }
194 module ctgmath {
195 header "ctgmath"
196 export ccomplex
197 export cmath
198 export *
199 }
200 module ctime {
201 header "ctime"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000202 export *
203 }
204 // FIXME: <cuchar> is missing.
205 module cwchar {
206 header "cwchar"
Eric Fiselier3b733092016-12-06 07:40:46 +0000207 export depr.stdio_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000208 export *
209 }
210 module cwctype {
211 header "cwctype"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000212 export *
213 }
214 }
215
Richard Smith31cfef02014-05-21 00:33:49 +0000216 module algorithm {
217 header "algorithm"
218 export initializer_list
219 export *
zoecarver79e927a2021-06-03 11:26:03 -0700220
221 module __algorithm {
222 module adjacent_find { header "__algorithm/adjacent_find.h" }
223 module all_of { header "__algorithm/all_of.h" }
224 module any_of { header "__algorithm/any_of.h" }
225 module binary_search { header "__algorithm/binary_search.h" }
226 module clamp { header "__algorithm/clamp.h" }
227 module comp { header "__algorithm/comp.h" }
228 module comp_ref_type { header "__algorithm/comp_ref_type.h" }
229 module copy { header "__algorithm/copy.h" }
230 module count { header "__algorithm/count.h" }
231 module count_if { header "__algorithm/count_if.h" }
232 module equal { header "__algorithm/equal.h" }
233 module equal_range { header "__algorithm/equal_range.h" }
234 module fill { header "__algorithm/fill.h" }
235 module find { header "__algorithm/find.h" }
236 module find_end { header "__algorithm/find_end.h" }
237 module find_first_of { header "__algorithm/find_first_of.h" }
238 module find_if { header "__algorithm/find_if.h" }
239 module find_if_not { header "__algorithm/find_if_not.h" }
240 module for_each { header "__algorithm/for_each.h" }
241 module for_each_n { header "__algorithm/for_each_n.h" }
242 module generate { header "__algorithm/generate.h" }
243 module half_positive { header "__algorithm/half_positive.h" }
244 module includes { header "__algorithm/includes.h" }
245 module inplace_merge { header "__algorithm/inplace_merge.h" }
246 module is_heap { header "__algorithm/is_heap.h" }
247 module is_heap_until { header "__algorithm/is_heap_until.h" }
248 module is_partitioned { header "__algorithm/is_partitioned.h" }
249 module is_permutation { header "__algorithm/is_permutation.h" }
250 module is_sorted { header "__algorithm/is_sorted.h" }
251 module lexicographical_compare { header "__algorithm/lexicographical_compare.h" }
252 module lower_bound { header "__algorithm/lower_bound.h" }
253 module make_heap { header "__algorithm/make_heap.h" }
254 module max { header "__algorithm/max.h" }
255 module max_element { header "__algorithm/max_element.h" }
256 module merge { header "__algorithm/merge.h" }
257 module min { header "__algorithm/min.h" }
258 module min_element { header "__algorithm/min_element.h" }
259 module minmax { header "__algorithm/minmax.h" }
260 module minmax_element { header "__algorithm/minmax_element.h" }
261 module mismatch { header "__algorithm/mismatch.h" }
262 module move { header "__algorithm/move.h" }
263 module next_permutation { header "__algorithm/next_permutation.h" }
264 module none_of { header "__algorithm/none_of.h" }
265 module nth_element { header "__algorithm/nth_element.h" }
266 module partial_sort { header "__algorithm/partial_sort.h" }
267 module partition { header "__algorithm/partition.h" }
268 module partition_point { header "__algorithm/partition_point.h" }
269 module pop_heap { header "__algorithm/pop_heap.h" }
270 module prev_permutation { header "__algorithm/prev_permutation.h" }
271 module push_heap { header "__algorithm/push_heap.h" }
272 module remove { header "__algorithm/remove.h" }
273 module replace { header "__algorithm/replace.h" }
274 module reverse { header "__algorithm/reverse.h" }
275 module rotate { header "__algorithm/rotate.h" }
276 module sample { header "__algorithm/sample.h" }
277 module search { header "__algorithm/search.h" }
278 module search_n { header "__algorithm/search_n.h" }
279 module set_difference { header "__algorithm/set_difference.h" }
280 module set_intersection { header "__algorithm/set_intersection.h" }
281 module set_symmetric_difference { header "__algorithm/set_symmetric_difference.h" }
282 module set_union { header "__algorithm/set_union.h" }
283 module shift { header "__algorithm/shift.h" }
284 module shuffle { header "__algorithm/shuffle.h" }
285 module sift_down { header "__algorithm/sift_down.h" }
286 module sort { header "__algorithm/sort.h" }
287 module sort_heap { header "__algorithm/sort_heap.h" }
288 module stable_partition { header "__algorithm/stable_partition.h" }
289 module stable_sort { header "__algorithm/stable_sort.h" }
290 module transform { header "__algorithm/transform.h" }
291 module uniform_int_distribution { header "__algorithm/uniform_int_distribution.h" }
292 module unique { header "__algorithm/unique.h" }
293 module unwrap_iter { header "__algorithm/unwrap_iter.h" }
294 module upper_bound { header "__algorithm/upper_bound.h" }
295 }
Richard Smith31cfef02014-05-21 00:33:49 +0000296 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000297 module any {
298 header "any"
299 export *
300 }
Richard Smith31cfef02014-05-21 00:33:49 +0000301 module array {
302 header "array"
303 export initializer_list
304 export *
305 }
306 module atomic {
307 header "atomic"
308 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000309 }
Olivier Giroux161e6e82020-02-18 09:58:34 -0500310 module barrier {
Raphael Isemann95e3ba22020-02-24 20:20:54 +0100311 requires cplusplus14
Olivier Giroux161e6e82020-02-18 09:58:34 -0500312 header "barrier"
313 export *
314 }
Marshall Clowbf32ec92018-08-17 16:07:48 +0000315 module bit {
316 header "bit"
317 export *
318 }
Richard Smith31cfef02014-05-21 00:33:49 +0000319 module bitset {
320 header "bitset"
321 export string
322 export iosfwd
323 export *
324 }
325 // No submodule for cassert. It fundamentally needs repeated, textual inclusion.
Zhihao Yuan7bf19052018-08-01 02:38:30 +0000326 module charconv {
327 header "charconv"
328 export *
329 }
Richard Smith31cfef02014-05-21 00:33:49 +0000330 module chrono {
331 header "chrono"
332 export *
333 }
Richard Smith31cfef02014-05-21 00:33:49 +0000334 module codecvt {
335 header "codecvt"
336 export *
337 }
Eric Fiseliere0074fc2018-04-06 21:37:23 +0000338 module compare {
339 header "compare"
340 export *
341 }
Richard Smith31cfef02014-05-21 00:33:49 +0000342 module complex {
343 header "complex"
344 export *
345 }
Eric Fiselierd59a0322020-04-08 18:00:13 -0400346 module concepts {
347 header "concepts"
348 export *
349 }
Richard Smith31cfef02014-05-21 00:33:49 +0000350 module condition_variable {
351 header "condition_variable"
352 export *
353 }
Richard Smith31cfef02014-05-21 00:33:49 +0000354 module deque {
355 header "deque"
356 export initializer_list
357 export *
358 }
359 module exception {
360 header "exception"
361 export *
362 }
Louis Dionne59d0b3c2019-08-05 18:29:14 +0000363 module execution {
364 header "execution"
365 export *
366 }
Eric Fiselier02cea5e2018-07-27 03:07:09 +0000367 module filesystem {
368 header "filesystem"
369 export *
370 }
Mark de Weverdf5fd832020-11-26 19:12:18 +0100371 module format {
372 header "format"
373 export *
374 }
Richard Smith31cfef02014-05-21 00:33:49 +0000375 module forward_list {
376 header "forward_list"
377 export initializer_list
378 export *
379 }
380 module fstream {
381 header "fstream"
382 export *
383 }
384 module functional {
385 header "functional"
386 export *
zoecarver79e927a2021-06-03 11:26:03 -0700387 module __functional {
388 module search { header "__functional/search.h" }
389 }
Richard Smith31cfef02014-05-21 00:33:49 +0000390 }
391 module future {
392 header "future"
393 export *
394 }
395 module initializer_list {
396 header "initializer_list"
397 export *
398 }
399 module iomanip {
400 header "iomanip"
401 export *
402 }
403 module ios {
404 header "ios"
405 export iosfwd
406 export *
407 }
408 module iosfwd {
409 header "iosfwd"
410 export *
411 }
412 module iostream {
413 header "iostream"
414 export ios
415 export streambuf
416 export istream
417 export ostream
418 export *
419 }
420 module istream {
421 header "istream"
422 // FIXME: should re-export ios, streambuf?
423 export *
424 }
425 module iterator {
426 header "iterator"
427 export *
428 }
Olivier Giroux161e6e82020-02-18 09:58:34 -0500429 module latch {
Raphael Isemann95e3ba22020-02-24 20:20:54 +0100430 requires cplusplus14
Olivier Giroux161e6e82020-02-18 09:58:34 -0500431 header "latch"
432 export *
433 }
Richard Smith31cfef02014-05-21 00:33:49 +0000434 module limits {
435 header "limits"
436 export *
437 }
438 module list {
439 header "list"
440 export initializer_list
441 export *
442 }
443 module locale {
444 header "locale"
445 export *
446 }
447 module map {
448 header "map"
449 export initializer_list
450 export *
451 }
452 module memory {
453 header "memory"
454 export *
455 }
456 module mutex {
457 header "mutex"
458 export *
459 }
460 module new {
461 header "new"
462 export *
463 }
Raul Tambreafcedea2020-06-19 12:43:33 +0530464 module numbers {
465 header "numbers"
466 export *
467 }
Richard Smith31cfef02014-05-21 00:33:49 +0000468 module numeric {
469 header "numeric"
470 export *
471 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000472 module optional {
473 header "optional"
474 export *
475 }
Richard Smith31cfef02014-05-21 00:33:49 +0000476 module ostream {
477 header "ostream"
478 // FIXME: should re-export ios, streambuf?
479 export *
480 }
481 module queue {
482 header "queue"
483 export initializer_list
484 export *
485 }
486 module random {
487 header "random"
488 export initializer_list
489 export *
490 }
Mark de Weveraf59b2d2020-11-24 18:08:02 +0100491 module ranges {
492 header "ranges"
Christopher Di Bella66ce1292021-04-11 05:08:32 +0000493 export compare
494 export initializer_list
495 export iterator
Mark de Weveraf59b2d2020-11-24 18:08:02 +0100496 export *
497 }
Richard Smith31cfef02014-05-21 00:33:49 +0000498 module ratio {
499 header "ratio"
500 export *
501 }
502 module regex {
503 header "regex"
504 export initializer_list
505 export *
506 }
507 module scoped_allocator {
508 header "scoped_allocator"
509 export *
510 }
Olivier Giroux161e6e82020-02-18 09:58:34 -0500511 module semaphore {
Raphael Isemann95e3ba22020-02-24 20:20:54 +0100512 requires cplusplus14
Olivier Giroux161e6e82020-02-18 09:58:34 -0500513 header "semaphore"
514 export *
515 }
Richard Smith31cfef02014-05-21 00:33:49 +0000516 module set {
517 header "set"
518 export initializer_list
519 export *
520 }
521 module sstream {
522 header "sstream"
523 // FIXME: should re-export istream, ostream, ios, streambuf, string?
524 export *
525 }
526 module stack {
527 header "stack"
528 export initializer_list
529 export *
530 }
531 module stdexcept {
532 header "stdexcept"
533 export *
534 }
535 module streambuf {
536 header "streambuf"
537 export *
538 }
539 module string {
540 header "string"
541 export initializer_list
Eric Fiselier2d357f72016-12-05 23:53:23 +0000542 export string_view
543 export __string
544 export *
545 }
546 module string_view {
547 header "string_view"
548 export initializer_list
549 export __string
Richard Smith31cfef02014-05-21 00:33:49 +0000550 export *
551 }
552 module strstream {
553 header "strstream"
Eric Fiselierbdc20862016-12-05 23:16:07 +0000554 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000555 }
556 module system_error {
557 header "system_error"
558 export *
559 }
560 module thread {
561 header "thread"
562 export *
563 }
564 module tuple {
565 header "tuple"
566 export *
567 }
568 module type_traits {
569 header "type_traits"
570 export *
571 }
572 module typeindex {
573 header "typeindex"
574 export *
575 }
576 module typeinfo {
577 header "typeinfo"
578 export *
579 }
580 module unordered_map {
581 header "unordered_map"
582 export initializer_list
583 export *
584 }
585 module unordered_set {
586 header "unordered_set"
587 export initializer_list
588 export *
589 }
590 module utility {
591 header "utility"
592 export initializer_list
593 export *
594 }
595 module valarray {
596 header "valarray"
597 export initializer_list
598 export *
599 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000600 module variant {
601 header "variant"
602 export *
603 }
Richard Smith31cfef02014-05-21 00:33:49 +0000604 module vector {
605 header "vector"
606 export initializer_list
607 export *
608 }
Eric Fiseliera604a7d2018-04-04 04:21:54 +0000609 module version {
610 header "version"
611 export *
612 }
Richard Smith31cfef02014-05-21 00:33:49 +0000613
614 // FIXME: These should be private.
Petr Hosek5f4e91c2021-06-07 11:29:03 -0700615 module __bit_reference { header "__bit_reference" export * }
616 module __bits { header "__bits" export * }
617 module __debug { header "__debug" export * }
618 module __errc { header "__errc" export * }
619 module __functional_base { header "__functional_base" export * }
620 module __hash_table { header "__hash_table" export * }
621 module __locale { header "__locale" export * }
622 module __mutex_base { header "__mutex_base" export * }
623 module __node_handle { header "__node_handle" export * }
624 module __split_buffer { header "__split_buffer" export * }
625 module __std_stream { header "__std_stream" export * }
626 module __string { header "__string" export * }
627 module __threading_support { header "__threading_support" export * }
628 module __tree { header "__tree" export * }
629 module __tuple { header "__tuple" export * }
630 module __undef_macros { header "__undef_macros" export * }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000631
632 module experimental {
Eric Fiselier92ae1af2016-12-06 01:34:24 +0000633 requires cplusplus11
634
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000635 module algorithm {
636 header "experimental/algorithm"
637 export *
638 }
Eric Fiselierf0426152017-05-25 23:39:29 +0000639 module coroutine {
Eric Fiseliere4a3dab2017-05-29 23:17:28 +0000640 requires coroutines
Eric Fiselierf0426152017-05-25 23:39:29 +0000641 header "experimental/coroutine"
642 export *
643 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000644 module deque {
645 header "experimental/deque"
646 export *
647 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000648 module filesystem {
649 header "experimental/filesystem"
650 export *
651 }
652 module forward_list {
653 header "experimental/forward_list"
654 export *
655 }
656 module functional {
657 header "experimental/functional"
658 export *
659 }
660 module iterator {
661 header "experimental/iterator"
662 export *
663 }
664 module list {
665 header "experimental/list"
666 export *
667 }
668 module map {
669 header "experimental/map"
670 export *
671 }
672 module memory_resource {
673 header "experimental/memory_resource"
674 export *
675 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000676 module propagate_const {
677 header "experimental/propagate_const"
678 export *
679 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000680 module regex {
681 header "experimental/regex"
682 export *
683 }
Tim Shen158e51b2018-04-23 21:54:06 +0000684 module simd {
685 header "experimental/simd"
686 export *
687 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000688 module set {
689 header "experimental/set"
690 export *
691 }
Marshall Clowd2ad87e2018-07-24 03:01:02 +0000692 module span {
693 header "span"
694 export *
695 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000696 module string {
697 header "experimental/string"
698 export *
699 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +0000700 module type_traits {
701 header "experimental/type_traits"
702 export *
703 }
704 module unordered_map {
705 header "experimental/unordered_map"
706 export *
707 }
708 module unordered_set {
709 header "experimental/unordered_set"
710 export *
711 }
712 module utility {
713 header "experimental/utility"
714 export *
715 }
716 module vector {
717 header "experimental/vector"
718 export *
719 }
720 // FIXME these should be private
721 module __memory {
722 header "experimental/__memory"
723 export *
724 }
725 } // end experimental
Richard Smith31cfef02014-05-21 00:33:49 +0000726}