android13/external/jemalloc_new/include/jemalloc/internal/public_namespace.sh

7 lines
129 B
Bash
Executable File

#!/bin/sh
for nm in `cat $1` ; do
n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
echo "#define je_${n} JEMALLOC_N(${n})"
done