summaryrefslogtreecommitdiff
path: root/Include/funcobject.h
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-07-09 00:20:36 +0000
committerFred Drake <fdrake@acm.org>2000-07-09 00:20:36 +0000
commitea9cb5aebf38741871ad4f28971dcd23ddd77ad2 (patch)
tree0e891c50f3406cf846cfdad4757464dd087e6592 /Include/funcobject.h
parent5eb6d4e3bf094c33ae66432eeae3668e220dd28d (diff)
downloadcpython-git-ea9cb5aebf38741871ad4f28971dcd23ddd77ad2.tar.gz
ANSI-fication and Py_PROTO extermination.
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r--Include/funcobject.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h
index dc9a9426dc..e85fc1a611 100644
--- a/Include/funcobject.h
+++ b/Include/funcobject.h
@@ -1,9 +1,3 @@
-#ifndef Py_FUNCOBJECT_H
-#define Py_FUNCOBJECT_H
-#ifdef __cplusplus
-extern "C" {
-#endif
-
/***********************************************************
Copyright (c) 2000, BeOpen.com.
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
@@ -16,24 +10,30 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
/* Function object interface */
+#ifndef Py_FUNCOBJECT_H
+#define Py_FUNCOBJECT_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
typedef struct {
- PyObject_HEAD
- PyObject *func_code;
- PyObject *func_globals;
- PyObject *func_defaults;
- PyObject *func_doc;
- PyObject *func_name;
+ PyObject_HEAD
+ PyObject *func_code;
+ PyObject *func_globals;
+ PyObject *func_defaults;
+ PyObject *func_doc;
+ PyObject *func_name;
} PyFunctionObject;
extern DL_IMPORT(PyTypeObject) PyFunction_Type;
#define PyFunction_Check(op) ((op)->ob_type == &PyFunction_Type)
-extern DL_IMPORT(PyObject *) PyFunction_New Py_PROTO((PyObject *, PyObject *));
-extern DL_IMPORT(PyObject *) PyFunction_GetCode Py_PROTO((PyObject *));
-extern DL_IMPORT(PyObject *) PyFunction_GetGlobals Py_PROTO((PyObject *));
-extern DL_IMPORT(PyObject *) PyFunction_GetDefaults Py_PROTO((PyObject *));
-extern DL_IMPORT(int) PyFunction_SetDefaults Py_PROTO((PyObject *, PyObject *));
+extern DL_IMPORT(PyObject *) PyFunction_New(PyObject *, PyObject *);
+extern DL_IMPORT(PyObject *) PyFunction_GetCode(PyObject *);
+extern DL_IMPORT(PyObject *) PyFunction_GetGlobals(PyObject *);
+extern DL_IMPORT(PyObject *) PyFunction_GetDefaults(PyObject *);
+extern DL_IMPORT(int) PyFunction_SetDefaults(PyObject *, PyObject *);
/* Macros for direct access to these values. Type checks are *not*
done, so use with care. */