From b4d5a5cca29426a282e8f1e64b2271fdd1f0a23e Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Mon, 1 Jun 2020 13:35:56 -0500 Subject: bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18413) --- Include/cpython/frameobject.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Include/cpython/frameobject.h') diff --git a/Include/cpython/frameobject.h b/Include/cpython/frameobject.h index 36a51baae8..c76fbe0616 100644 --- a/Include/cpython/frameobject.h +++ b/Include/cpython/frameobject.h @@ -4,10 +4,6 @@ # error "this header file must not be included directly" #endif -#ifdef __cplusplus -extern "C" { -#endif - typedef struct { int b_type; /* what kind of block this is */ int b_handler; /* where to jump to find handler */ @@ -78,7 +74,3 @@ PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *); PyAPI_FUNC(void) _PyFrame_DebugMallocStats(FILE *out); PyAPI_FUNC(PyFrameObject *) PyFrame_GetBack(PyFrameObject *frame); - -#ifdef __cplusplus -} -#endif -- cgit v1.2.1