mirror of
https://github.com/golang/go
synced 2024-11-05 20:26:13 -07:00
09aeca5c04
Since there is no Runemask constant in UTF-8 enum in 9atom, removing the other constants leads to an empty enum, which is illegal. Thus, we remove enum entirely. LGTM=r R=golang-codereviews, r CC=golang-codereviews https://golang.org/cl/82660044
9 lines
190 B
Bash
Executable File
9 lines
190 B
Bash
Executable File
#!/bin/rc
|
|
|
|
pattern='/umuldiv/d
|
|
/rune routines/,/^\/\*/d
|
|
/print routines/,/^\/\*/d
|
|
/error string for/,/^\/\*/d'
|
|
|
|
sed -e $pattern /sys/include/libc.h | awk '/^enum/ && !n++, /^};/ {next}1'
|