]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - manual/memory.texi
Split large string section; add truncation advice
[thirdparty/glibc.git] / manual / memory.texi
index cea2cd7ba70c06c7d04efedaa663f176355d04d9..700555ed46e5acefb9688600e73168e617c81149 100644 (file)
@@ -547,7 +547,7 @@ The contents of the block are undefined; you must initialize it yourself
 Normally you would cast the value as a pointer to the kind of object
 that you want to store in the block.  Here we show an example of doing
 so, and of initializing the space with zeros using the library function
-@code{memset} (@pxref{Copying and Concatenation}):
+@code{memset} (@pxref{Copying Strings and Arrays}):
 
 @smallexample
 struct foo *ptr;