No more attempting to edit Pod before the first coffee of the morning.
[p5sagit/p5-mst-13.2.git] / ext / DynaLoader / dl_none.xs
CommitLineData
a0d0e21e 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.