diff options
Diffstat (limited to 'Include/cpython/traceback.h')
-rw-r--r-- | Include/cpython/traceback.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Include/cpython/traceback.h b/Include/cpython/traceback.h index 837470c..aac5b42 100644 --- a/Include/cpython/traceback.h +++ b/Include/cpython/traceback.h @@ -2,10 +2,6 @@ # error "this header file must not be included directly" #endif -#ifdef __cplusplus -extern "C" { -#endif - typedef struct _traceback { PyObject_HEAD struct _traceback *tb_next; @@ -16,7 +12,3 @@ typedef struct _traceback { PyAPI_FUNC(int) _Py_DisplaySourceLine(PyObject *, PyObject *, int, int); PyAPI_FUNC(void) _PyTraceback_Add(const char *, const char *, int); - -#ifdef __cplusplus -} -#endif |