diff options
author | Yusuke Endoh <[email protected]> | 2024-02-21 17:14:49 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2024-02-21 17:57:48 +0900 |
commit | b1431ce427eb193f45fe536f1fdfdf22bbe02e3d (patch) | |
tree | 7308e1f2c269c3740828d8d1d8019582b73ce26d /dmydln.c | |
parent | 6ecb14df2cda223e2280891150b3f41c1eb2edf0 (diff) |
Add comments to dmydln.c, dmyenc.c, and dmyext.c
They are used conditionally in miniruby, dynamically-linked ruby, and
statically-linked ruby (--with-static-linked-ext).
I asked @nobu about the conditions. and I leave comments because the
conditions are insanely difficult.
Diffstat (limited to 'dmydln.c')
-rw-r--r-- | dmydln.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,6 @@ +// This file is used by miniruby, not ruby. +// ruby uses dln.c. + #include "ruby/ruby.h" NORETURN(void *dln_load(const char *)); |