Subject module name or entrypoint could not be found.
Author Steve Harp
Hi All,

I'm trying to write a very simple UDF library. Currently, I only have
3 functions. They all have the same calling convensions and return
types. One of the functions works perfectly and the other two give an
error:

"Invalid token.
invalid request BLR at offset 63.
function H_MYFUNC is not defined.
module name or entrypoint could not be found."

All 3 functions have the same declaration:

declare EXTERNAL FUNCTION h_myfunc
CSTRING(80)
RETURNS CSTRING (240) FREE_IT
ENTRY_POINT 'MyFunc' MODULE_NAME 'myudf';

In fact, I used copy/paste to create the 3 declarations so I know
there're no errors. All 3 functions do pretty much the same thing;
they receive a string, manipulate it and return a string.

What could I be missing and how do I troubleshoot this?

Thanks,
Steve