diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-01-30 08:45:49 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-01 12:29:26 -0500 |
commit | 88fba8a4b3c22e953a634b81dd0b67ec66eb5e72 (patch) | |
tree | 75a46332ad32cfeaf4f4d52b3b60fd452f2493b6 /rts/RtsSymbols.c | |
parent | 06185102bb06d6d56e00d40172a6a473fc228501 (diff) | |
download | haskell-88fba8a4b3c22e953a634b81dd0b67ec66eb5e72.tar.gz |
Fix a few Note inconsistencies
Diffstat (limited to 'rts/RtsSymbols.c')
-rw-r--r-- | rts/RtsSymbols.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c index b2c85b591c..e186830b4e 100644 --- a/rts/RtsSymbols.c +++ b/rts/RtsSymbols.c @@ -93,7 +93,6 @@ extern char **environ; /* * Note [Strong symbols] * ~~~~~~~~~~~~~~~~~~~~~ - * * The notion of a *weak* symbol is fairly common in linking: a symbol is weak * if it is declared but not defined, allowing it to be defined by an object * which is loaded later. GHC generalizes this notion, allowing symbol @@ -112,7 +111,6 @@ extern char **environ; /* * Note [Symbols for MinGW's printf] * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - * * The printf offered by Microsoft's libc implementation, msvcrt, is quite * incomplete, lacking support for even %ull. Consequently mingw-w64 offers its * own implementation which we enable. However, to be thread-safe the @@ -132,7 +130,6 @@ extern char **environ; */ /* Note [_iob_func symbol] * ~~~~~~~~~~~~~~~~~~~~~~~ - * * Microsoft in VS2013 to VS2015 transition made a backwards incompatible change * to the stdio function __iob_func. * |