diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-08-03 19:47:34 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-08-03 20:03:35 +0200 |
commit | 2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5 (patch) | |
tree | 43bc0a7953f008fad5fbc793e8d2dfca2e540081 /scripts/config/util.c | |
parent | 7bf3695b0230d4cc4b6348f7c87b3c164314db8d (diff) | |
download | upstream-2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5.tar.gz upstream-2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5.tar.bz2 upstream-2d7e602381f3c473d6c8214e8e56bcf80ccf9fa5.zip |
scripts/config: sync with latest linux upstream
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'scripts/config/util.c')
-rw-r--r-- | scripts/config/util.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/config/util.c b/scripts/config/util.c index 94f9c83e32..0e76042473 100644 --- a/scripts/config/util.c +++ b/scripts/config/util.c @@ -88,16 +88,6 @@ struct gstr str_new(void) return gs; } -/* Allocate and assign growable string */ -struct gstr str_assign(const char *s) -{ - struct gstr gs; - gs.s = strdup(s); - gs.len = strlen(s) + 1; - gs.max_width = 0; - return gs; -} - /* Free storage for growable string */ void str_free(struct gstr *gs) { |