55df1a106590a6c9fd7e3cca90fa6bbad8eb50c4
max
  Thu Jan 29 05:26:21 2026 -0800
Revert "Reapply "changing superTrack TrackUi quite a bit."

This reverts commit ce138738e24cb6e84502440b79490c412f6786f8.

diff --git src/inc/common.h src/inc/common.h
index 856a7170440..fa1a2759e71 100644
--- src/inc/common.h
+++ src/inc/common.h
@@ -317,33 +317,30 @@
 int verboseLevel();
 /* Get verbosity level. */
 
 void verboseSetLevel(int verbosity);
 /* Set verbosity level in log.  0 for no logging,
  * higher number for increasing verbosity. */
 
 INLINE void zeroBytes(void *vpt, int count)
 /* fill a specified area of memory with zeroes */
 {
 memset(vpt, '\0', count);
 }
 
 #define ZeroVar(v) zeroBytes(v, sizeof(*v))
 
-/* count elements of a NULL-terminated array */
-int arrNullLen(char **arr);
-
 void reverseBytes(char *bytes, long length);
 /* Reverse the order of the bytes. */
 
 void reverseInts(int *a, int length);
 /* Reverse the order of the integer array. */
 
 void reverseUnsigned(unsigned *a, int length);
 /* Reverse the order of the unsigned array. */
 
 void reverseDoubles(double *a, int length);
 /* Reverse the order of the double array. */
 
 void reverseStrings(char **a, int length);
 /* Reverse the order of the char* array. */