C++ Exception Support: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
Line 94: Line 94:
==dladdr==
==dladdr==
This function is used for debugging by libcxxrt, not a big problem to simply return an error.
This function is used for debugging by libcxxrt, not a big problem to simply return an error.
<source lang="c">
<pre>
int dladdr(void*, Dl_info*) {
int dladdr(void*, Dl_info*) {
return 0;
return 0;
}
}
</pre>
</source>


==stdarg.h==
==stdarg.h==