| [3225] | 1 | /* -*- C -*- ***********************************************
|
|---|
| 2 | Copyright (c) 2000, BeOpen.com.
|
|---|
| 3 | Copyright (c) 1995-2000, Corporation for National Research Initiatives.
|
|---|
| 4 | Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
|
|---|
| 5 | All rights reserved.
|
|---|
| 6 |
|
|---|
| 7 | See the file "Misc/COPYRIGHT" for information on usage and
|
|---|
| 8 | redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|---|
| 9 | ******************************************************************/
|
|---|
| 10 |
|
|---|
| 11 | /* Module configuration */
|
|---|
| 12 |
|
|---|
| 13 | /* !!! !!! !!! This file is edited by the makesetup script !!! !!! !!! */
|
|---|
| 14 |
|
|---|
| 15 | /* This file contains the table of built-in modules.
|
|---|
| 16 | See init_builtin() in import.c. */
|
|---|
| 17 |
|
|---|
| 18 | #include "Python.h"
|
|---|
| 19 |
|
|---|
| 20 | #ifdef __cplusplus
|
|---|
| 21 | extern "C" {
|
|---|
| 22 | #endif
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 | /* -- ADDMODULE MARKER 1 -- */
|
|---|
| 26 |
|
|---|
| 27 | extern void PyMarshal_Init(void);
|
|---|
| |
|---|