7 lines
91 B
Bash
7 lines
91 B
Bash
#!/bin/sh
|
|
|
|
rm -f protos.h
|
|
for i in *.c; do
|
|
sed -n -f ./makeprotos-sed $i >> protos.h
|
|
done
|