diff options
| -rw-r--r-- | sys/src/cmd/sed.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/src/cmd/sed.c b/sys/src/cmd/sed.c index 790f2ed51..08b6cd7fb 100644 --- a/sys/src/cmd/sed.c +++ b/sys/src/cmd/sed.c @@ -177,7 +177,6 @@ Reprog *compile(void); Rune *compsub(Rune *, Rune *); void dechain(void); void dosub(Rune *); -int ecmp(Rune *, Rune *, int); void enroll(char *); void errexit(void); int executable(SedCom *); @@ -1324,13 +1323,6 @@ putline(Biobuf *bp, Rune *buf, int n) Bputrune(bp, *buf++); Bputc(bp, '\n'); } -ecmp(Rune *a, Rune *b, int count) -{ - while(count--) - if(*a++ != *b++) - return 0; - return 1; -} void arout(void) |
