mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-16 15:41:41 +03:00
6 lines
129 B
Bash
Executable file
6 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
|