Third argument is now `const void *'.

1998-08-25  Martin Baulig  <martin@home-of-linux.org>

	* include/glibtop/command.h (glibtop_call): Third argument is
	now `const void *'.

	* include/glibtop/xmalloc.h (glibtop_free): Now taking a
	`const void *'.
This commit is contained in:
Martin Baulig
1998-08-25 08:41:02 +00:00
committed by Martin Baulig
parent db3d7adbaa
commit 0ea8e591f4
6 changed files with 16 additions and 10 deletions

View File

@@ -37,7 +37,7 @@ extern void *glibtop_malloc_r __P((glibtop *, size_t));
extern void *glibtop_calloc_r __P((glibtop *, size_t, size_t));
extern void *glibtop_realloc_r __P((glibtop *, void *, size_t));
extern char *glibtop_strdup_r __P((glibtop *, const char *));
extern void glibtop_free_r __P((glibtop *, void *));
extern void glibtop_free_r __P((glibtop *, const void *));
__END_DECLS