commit | 1a8791e0b875df8e9428c2d9969f64e5967ac0b4 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Aug 04 22:46:29 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Aug 04 22:46:29 1998 +0000 |
tree | 4c0a38c8dbfc45a9b2d7343c17c4a969a8718162 | |
parent | 7d896ab1bbd5e15be7ae9203ead47f4f500a6a81 [diff] [blame] |
Changes for BeOS, QNX and long long, by Chris Herborth.
diff --git a/Include/import.h b/Include/import.h index 0f6e92f..2b59b51 100644 --- a/Include/import.h +++ b/Include/import.h
@@ -54,6 +54,11 @@ extern PyObject *_PyImport_FindExtension Py_PROTO((char *, char *)); extern PyObject *_PyImport_FixupExtension Py_PROTO((char *, char *)); +#ifdef __BEOS__ +#include <kernel/image.h> +extern image_id PyImport_BeImageID( char *name ); +#endif + struct _inittab { char *name; void (*initfunc)();