From caa63808861d4e92d4dc1005fc01de0f2e4a8fd0 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 12 Jan 1995 11:45:45 +0000 Subject: The great renaming, phase two: all header files have been updated to use the new names exclusively, and the linker will see the new names. Files that import "Python.h" also only see the new names. Files that import "allobjects.h" will continue to be able to use the old names, due to the inclusion (in allobjects.h) of "rename2.h". --- Include/bitset.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Include/bitset.h') diff --git a/Include/bitset.h b/Include/bitset.h index f1a1ead348..673abb1267 100644 --- a/Include/bitset.h +++ b/Include/bitset.h @@ -34,12 +34,12 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. typedef BYTE *bitset; -bitset newbitset PROTO((int nbits)); -void delbitset PROTO((bitset bs)); +bitset newbitset Py_PROTO((int nbits)); +void delbitset Py_PROTO((bitset bs)); #define testbit(ss, ibit) (((ss)[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0) -int addbit PROTO((bitset bs, int ibit)); /* Returns 0 if already set */ -int samebitset PROTO((bitset bs1, bitset bs2, int nbits)); -void mergebitset PROTO((bitset bs1, bitset bs2, int nbits)); +int addbit Py_PROTO((bitset bs, int ibit)); /* Returns 0 if already set */ +int samebitset Py_PROTO((bitset bs1, bitset bs2, int nbits)); +void mergebitset Py_PROTO((bitset bs1, bitset bs2, int nbits)); #define BITSPERBYTE (8*sizeof(BYTE)) #define NBYTES(nbits) (((nbits) + BITSPERBYTE - 1) / BITSPERBYTE) -- cgit v1.2.1