diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2014-12-19 23:09:40 +0100 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2014-12-19 23:09:40 +0100 |
commit | 3eb38795dbbbd8160012050de4dfef200a21f2bf (patch) | |
tree | 3baf6d14d95902ed16f5045085b1d41fc9e74051 /ChangeLog | |
parent | 0d4ba8be9cd4cebcc2418c72c22a12fc9baf2c85 (diff) | |
download | glibc-3eb38795dbbbd8160012050de4dfef200a21f2bf.tar.gz glibc-3eb38795dbbbd8160012050de4dfef200a21f2bf.tar.xz glibc-3eb38795dbbbd8160012050de4dfef200a21f2bf.zip |
Simplify strncat.
We rewrite strncat to use strnlen and malloc calls which simplifies code an is faster as these functions are better optimized than original code.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 3cef094bc5..4c8bcb418f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-12-19 Ondřej Bílka <neleai@seznam.cz> + + * string/strncat.c (STRNCAT): Simplify implementation. + 2014-12-19 David S. Miller <davem@davemloft.net> * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Use a union to |