Browse Source
The `seq` utility is not available in OpenBSD. Co-authored-by: Anthony Coulter <riscv@anthonycoulter.name>pull/474/head
committed by
GitHub
1 changed files with 3 additions and 2 deletions
@ -1,7 +1,8 @@ |
|||
#!/bin/sh |
|||
n=$(($1-1)) |
|||
for i in `seq 0 $n` |
|||
i=0 |
|||
while [ $i -lt $1 ] |
|||
do |
|||
echo case $i: ICACHE_ACCESS\($i\)\; |
|||
i=$((i+1)) |
|||
done |
|||
echo |
|||
|
|||
Loading…
Reference in new issue