diff options
Diffstat (limited to 'sed.c')
-rw-r--r-- | sed.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -195,15 +195,6 @@ static int get_address(struct sed_cmd *sed_cmd, const char *str, int *linenum, r | |||
195 | return idx; | 195 | return idx; |
196 | } | 196 | } |
197 | 197 | ||
198 | static char *strdup_substr(const char *str, int start, int end) | ||
199 | { | ||
200 | int size = end - start + 1; | ||
201 | char *newstr = xmalloc(size); | ||
202 | memcpy(newstr, str+start, size-1); | ||
203 | newstr[size-1] = '\0'; | ||
204 | return newstr; | ||
205 | } | ||
206 | |||
207 | static int parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr) | 198 | static int parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr) |
208 | { | 199 | { |
209 | int oldidx, cflags = REG_NEWLINE; | 200 | int oldidx, cflags = REG_NEWLINE; |