mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 17:40:06 +00:00
8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
|
#!/bin/sh
|
||
|
do_diffs() {
|
||
|
while read func_pattern src_file dst_file; do
|
||
|
diff -up $src_file $dst_file
|
||
|
done
|
||
|
}
|
||
|
do_diffs < import_file_list
|