bsd.sed

来自「c 语言编译器 源代码- c compiler」· SED 代码 · 共 13 行

SED
13
字号
#ident	"@(#)cfront:scratch/bsd.sed	1.6"echo "Fixing _iobuf structures:"for f in */*..cdo	echo $f        sed -e '/__iobuf__base/s//&; int __iobuf__bufsiz/'  \	-e '/_ctype/s//_ctype_/g' $f > temp$$	mv temp$$ $fdoneecho "Before running \"make scratch\", you should set the"echo "CCFLAGS and BSD macros in the makefile.  See the README for"echo "details."

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?