source: trunk/essentials/dev-lang/perl/ext/DynaLoader/dl_none.xs

Last change on this file was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 272 bytes
Line 
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.
Note: See TracBrowser for help on using the repository browser.