diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-22 07:18:02 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-22 07:18:02 (GMT) |
commit | 57c179c5b92f1cbe21e23b514f34f75e0d32bbfb (patch) | |
tree | 9500c78afa0bbbfcc982ba50899fc5c74cc8ed20 /Include | |
parent | f84c38a39ad9b870a43d35fba7d0f3586a492176 (diff) | |
download | cpython-57c179c5b92f1cbe21e23b514f34f75e0d32bbfb.zip cpython-57c179c5b92f1cbe21e23b514f34f75e0d32bbfb.tar.gz cpython-57c179c5b92f1cbe21e23b514f34f75e0d32bbfb.tar.bz2 |
Remove staticforward and statichere
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Include/object.h b/Include/object.h index 184d4c6..5739651 100644 --- a/Include/object.h +++ b/Include/object.h @@ -685,21 +685,6 @@ PyAPI_DATA(PyObject) _Py_NotImplementedStruct; /* Don't use this directly */ */ PyAPI_DATA(int) _Py_SwappedOp[]; -/* -Define staticforward and statichere for source compatibility with old -C extensions. - -The staticforward define was needed to support certain broken C -compilers (notably SCO ODT 3.0, perhaps early AIX as well) botched the -static keyword when it was used with a forward declaration of a static -initialized structure. Standard C allows the forward declaration with -static, and we've decided to stop catering to broken C compilers. -(In fact, we expect that the compilers are all fixed eight years later.) -*/ - -#define staticforward static -#define statichere static - /* More conventions |