/usr/share/hevea/chngcntr.hva is in hevea 2.30-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | \ProvidesPackage{chngcntr}
\@primitives{chngcntr}
%%%%%%%%%%%%%%%
\newcommand{\counterwithin*}[2]{\@addtoreset{#1}{#2}}
\newcommand{\counterwithin}[2]
{\@addtoreset{#1}{#2}%
\@namedef{the#1}{\@nameuse{the#2}.\arabic{#1}}}
%%%%%%%%%%%%%%%
\newcommand{\counterwithout*}[2]{\@removefromreset{#1}{#2}}
\newcommand{\counterwithout}[2]
{\@removefromreset{#1}{#2}%
\@namedef{the#1}{\arabic{#1}}}
|