tmp/tmpyda6d9f3/{from.md → to.md}
RENAMED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
#### Linkage <a id="using.linkage">[[using.linkage]]</a>
|
| 2 |
|
| 3 |
-
Entities in the C++standard library have external linkage
|
| 4 |
-
[[basic.link]]
|
| 5 |
-
the default `extern "C++"` linkage
|
| 6 |
|
| 7 |
Whether a name from the C standard library declared with external
|
| 8 |
linkage has `extern "C"` or `extern "C++"` linkage is
|
| 9 |
*implementation-defined*. It is recommended that an implementation use
|
| 10 |
`extern "C++"` linkage for this purpose.[^20]
|
| 11 |
|
| 12 |
-
Objects and functions defined in the library and required by a
|
| 13 |
-
|
| 14 |
|
| 15 |
-
See also replacement functions
|
| 16 |
-
changes
|
| 17 |
|
|
|
|
| 1 |
#### Linkage <a id="using.linkage">[[using.linkage]]</a>
|
| 2 |
|
| 3 |
+
Entities in the C++ standard library have external linkage
|
| 4 |
+
[[basic.link]]. Unless otherwise specified, objects and functions have
|
| 5 |
+
the default `extern "C++"` linkage [[dcl.link]].
|
| 6 |
|
| 7 |
Whether a name from the C standard library declared with external
|
| 8 |
linkage has `extern "C"` or `extern "C++"` linkage is
|
| 9 |
*implementation-defined*. It is recommended that an implementation use
|
| 10 |
`extern "C++"` linkage for this purpose.[^20]
|
| 11 |
|
| 12 |
+
Objects and functions defined in the library and required by a C++
|
| 13 |
+
program are included in the program prior to program startup.
|
| 14 |
|
| 15 |
+
See also replacement functions [[replacement.functions]], runtime
|
| 16 |
+
changes [[handler.functions]].
|
| 17 |
|