summaryrefslogtreecommitdiff
path: root/include/glibtop/procargs.h
diff options
context:
space:
mode:
authorMartin Baulig <martin@home-of-linux.org>1998-12-09 11:38:49 +0000
committerMartin Baulig <martin@src.gnome.org>1998-12-09 11:38:49 +0000
commit1520ee70838db2a183415aaea3ec865ff6ce13ad (patch)
tree2e1494a1ab01fa7f77422f2c990b4f5eebf605cd /include/glibtop/procargs.h
parentee9812e9af80d85b1a1b016e48cd4c0c9bda381e (diff)
downloadlibgtop-1520ee70838db2a183415aaea3ec865ff6ce13ad.tar.gz
Make the return value a `char *' instead of a `const char *'.
1998-12-09 Martin Baulig <martin@home-of-linux.org> * include/glibtop/procargs.h (glibtop_get_proc_args): Make the return value a `char *' instead of a `const char *'.
Diffstat (limited to 'include/glibtop/procargs.h')
-rw-r--r--include/glibtop/procargs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/glibtop/procargs.h b/include/glibtop/procargs.h
index 1ec6f5b7..0c68ac4c 100644
--- a/include/glibtop/procargs.h
+++ b/include/glibtop/procargs.h
@@ -47,14 +47,14 @@ struct _glibtop_proc_args
#define glibtop_get_proc_args_r glibtop_get_proc_args_s
#endif
-extern const char *glibtop_get_proc_args_l __P((glibtop *, glibtop_proc_args *, pid_t, unsigned));
+extern char *glibtop_get_proc_args_l __P((glibtop *, glibtop_proc_args *, pid_t, unsigned));
#if GLIBTOP_SUID_PROC_ARGS
extern void glibtop_init_proc_args_p __P((glibtop *));
-extern const char *glibtop_get_proc_args_p __P((glibtop *, glibtop_proc_args *, pid_t, unsigned));
+extern char *glibtop_get_proc_args_p __P((glibtop *, glibtop_proc_args *, pid_t, unsigned));
#else
extern void glibtop_init_proc_args_s __P((glibtop *));
-extern const char *glibtop_get_proc_args_s __P((glibtop *, glibtop_proc_args *, pid_t, unsigned));
+extern char *glibtop_get_proc_args_s __P((glibtop *, glibtop_proc_args *, pid_t, unsigned));
#endif
#ifdef GLIBTOP_NAMES