mirror of /home/gitosis/repositories/libev.git
Mirror of :pserver:anonymous@cvs.schmorp.de/schmorpforge libev
http://software.schmorp.de/pkg/libev.html
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
231 B
9 lines
231 B
#!/bin/sh -e
|
|
|
|
(
|
|
sed -ne '1,\%/\* ECB.H BEGIN \*/%p' ev.c
|
|
#perl -ne 'print unless /^#if ECB_CPP/ .. /^#endif/' <~/src/libecb/ecb.h
|
|
cat ~/src/libecb/ecb.h
|
|
sed -ne '\%/\* ECB.H END \*/%,$p' ev.c
|
|
) >ev.c~ && mv ev.c~ ev.c
|
|
|