This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
XS-APItest/t/utf8.t: Fix failing EBCDIC test
[perl5.git] / ext / DynaLoader / dl_none.xs
CommitLineData
a0d0e21e
LW
1/* dl_none.xs
2 *
3 * Stubs for platforms that do not support dynamic linking
4 */
5
73e43954 6#define PERL_EXT
a0d0e21e 7#include "EXTERN.h"
d96ba2c4 8#define PERL_IN_DL_NONE_XS
a0d0e21e
LW
9#include "perl.h"
10#include "XSUB.h"
11
12MODULE = DynaLoader PACKAGE = DynaLoader
13
14char *
15dl_error()
16 CODE:
17 RETVAL = "Not implemented";
18 OUTPUT:
19 RETVAL
20
21# end.