source: trunk/essentials/dev-lang/python/Python/dynload_hpux.c@ 3368

Last change on this file since 3368 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 1.3 KB
Line 
1
2/* Support for dynamic loading of extension modules */
3
4#include "dl.h"
5#include <errno.h>
6
7#include "Python.h"
8#include "importdl.h"
9
10#if defined(__hp9000s300)
11#define FUNCNAME_PATTERN "_init%.200s"
12#else
13#define FUNCNAME_PATTERN "init%.200s"
14#endif
15
16const struct filedescr _PyImport_DynLoadFiletab[] = {