This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
correct FSF address in various places
[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
6#include "EXTERN.h"
7#include "perl.h"
8#include "XSUB.h"
9
10MODULE = DynaLoader PACKAGE = DynaLoader
11
12char *
13dl_error()
14 CODE:
15 RETVAL = "Not implemented";
16 OUTPUT:
17 RETVAL
18
19# end.