summaryrefslogtreecommitdiffstats
path: root/generic/tclBinary.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-06-15 11:46:40 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-06-15 11:46:40 (GMT)
commit5b8c04a70a776616bda6c47500f65e46cf926941 (patch)
tree402dece90869057a7c316cb375457061d497aad5 /generic/tclBinary.c
parent213f13690302c86b48ec73d1a0f91387056f40fa (diff)
downloadtcl-5b8c04a70a776616bda6c47500f65e46cf926941.zip
tcl-5b8c04a70a776616bda6c47500f65e46cf926941.tar.gz
tcl-5b8c04a70a776616bda6c47500f65e46cf926941.tar.bz2
Remove the Tcl_GetByteArrayFromObj/TclGetByteArrayFromObj stub entries: Those are macro's now.
Diffstat (limited to 'generic/tclBinary.c')
-rw-r--r--generic/tclBinary.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c
index a45e4b2..90efc9f 100644
--- a/generic/tclBinary.c
+++ b/generic/tclBinary.c
@@ -408,43 +408,6 @@ TclGetBytesFromObj(
/*
*----------------------------------------------------------------------
*
- * Tcl_GetByteArrayFromObj --
- *
- * Attempt to get the array of bytes from the Tcl object. If the object
- * is not already a ByteArray object, an attempt will be made to convert
- * it to one.
- *
- * Results:
- * Pointer to array of bytes representing the ByteArray object.
- *
- * Side effects:
- * Frees old internal rep. Allocates memory for new internal rep.
- *
- *----------------------------------------------------------------------
- */
-
-#undef Tcl_GetByteArrayFromObj
-unsigned char *
-TclGetByteArrayFromObj(
- Tcl_Obj *objPtr, /* The ByteArray object. */
- int *numBytesPtr) /* If non-NULL, write the number of bytes
- * in the array here */
-{
- return TclGetBytesFromObj(NULL, objPtr, numBytesPtr);
-}
-
-unsigned char *
-Tcl_GetByteArrayFromObj(
- Tcl_Obj *objPtr, /* The ByteArray object. */
- size_t *numBytesPtr) /* If non-NULL, write the number of bytes
- * in the array here */
-{
- return Tcl_GetBytesFromObj(NULL, objPtr, numBytesPtr);
-}
-
-/*
- *----------------------------------------------------------------------
- *
* Tcl_SetByteArrayLength --
*
* This procedure changes the length of the byte array for this object.