summaryrefslogtreecommitdiff
path: root/glib.h
diff options
context:
space:
mode:
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>1999-07-01 09:30:18 +0000
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>1999-07-01 09:30:18 +0000
commitd610460c2264273b9520c0a932a34431efb56887 (patch)
tree5e2cc6a36c197a7116a8a24771dbc74b728da498 /glib.h
parentf80d6cc540d1116f5e04f7ea20a54ecf12ea37a6 (diff)
downloadglib-d610460c2264273b9520c0a932a34431efb56887.tar.gz
Added a g_memmove replacement for platforms without memmove, where bcopy
1999-07-01 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * configure.in, acconfig.h, gutils.c: Added a g_memmove replacement for platforms without memmove, where bcopy can't handle overlapping copies and the corresponding checks, which is taken form the PERL Configure routine. * glib.h: Updated the commentary about g_memmove to be right and more GLib-like. * configure.in: Removed test for rand_r, as it isn't used anymore.
Diffstat (limited to 'glib.h')
-rw-r--r--glib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib.h b/glib.h
index 9d562258e..0ce44a328 100644
--- a/glib.h
+++ b/glib.h
@@ -58,7 +58,7 @@
* To register hooks which are executed on exit().
* Usually a wrapper for STDC atexit.
*
- * void *g_memmove(void *dest, const void *src, guint count);
+ * void g_memmove(gpointer dest, gconstpointer void *src, gulong count);
* A wrapper for STDC memmove, or an implementation, if memmove doesn't
* exist. The prototype looks like the above, give or take a const,
* or size_t.