Hi,
I've gotten rather far with making my own run-time library, and I've gotten
pretty
far. The only problem now seems to be this first line in lifetime.d:
extern (C) void[] _d_arrayappendT(TypeInfo ti, Array *px, byte[] y)
{
size_t offset = px.data - __arrayStart(info);
//...
}
For som
%u wrote:
Hi,
I've been trying to make my own run-time library for D, but I've come across a
dead end: *any* library I make will inherently depend on SNN.lib, and there
are no headers for that C run-time library.
How can I write my own library in place of SNN.lib if I do not know what the
funct
Thank you for the response!
Unfortunately, though, that only gives me the name of the C functions, not the
actual headers. I need to know the parameters and return type of each function
in
order to be able to replace the library.
%u wrote:
Hi,
I've been trying to make my own run-time library for D, but I've come
across a
dead end: *any* library I make will inherently depend on SNN.lib, and
there
are no headers for that C run-time library.
How can I write my own library in place of SNN.lib if I do not know what
Hi,
I've been trying to make my own run-time library for D, but I've come across a
dead end: *any* library I make will inherently depend on SNN.lib, and there
are no headers for that C run-time library.
How can I write my own library in place of SNN.lib if I do not know what the
function specific