diff options
author | Skip Montanaro <skip.montanaro@gmail.com> | 2020-06-01 13:35:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 20:35:56 +0200 |
commit | b4d5a5cca29426a282e8f1e64b2271fdd1f0a23e (patch) | |
tree | d5557646d6c9b88a44b1459000cdf30d219907c2 /Include/cpython/frameobject.h | |
parent | cbe129692293251e7fbcea9ff0d822824d90c140 (diff) | |
download | cpython-git-b4d5a5cca29426a282e8f1e64b2271fdd1f0a23e.tar.gz |
bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18413)
Diffstat (limited to 'Include/cpython/frameobject.h')
-rw-r--r-- | Include/cpython/frameobject.h | 8 |
1 files changed, 0 insertions, 8 deletions
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 |