diff options
author | Martin Baulig <martin@home-of-linux.org> | 1998-06-07 13:57:45 +0000 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-06-07 13:57:45 +0000 |
commit | c84923132a0aaade80a48eb762b27d87640d3921 (patch) | |
tree | db52022ec9c44cd3ac12c00571296a7049b950d5 /include/glibtop/uptime.h | |
parent | 85f31a170768f2345e697b42e9bde1bfae252dbb (diff) | |
download | libgtop-c84923132a0aaade80a48eb762b27d87640d3921.tar.gz |
Using single underscore instead of two underscores for function prefixes
1998-06-07 Martin Baulig <martin@home-of-linux.org>
* *.[ch]: Using single underscore instead of two underscores
for function prefixes (regexp: ``s,__([rspl])\b,_$1,g'') to
avoid ambiguity with mangled C++ names.
Diffstat (limited to 'include/glibtop/uptime.h')
-rw-r--r-- | include/glibtop/uptime.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/glibtop/uptime.h b/include/glibtop/uptime.h index 99fe9290..39c8dea5 100644 --- a/include/glibtop/uptime.h +++ b/include/glibtop/uptime.h @@ -41,20 +41,20 @@ struct _glibtop_uptime idletime; /* GLIBTOP_UPTIME_IDLETIME */ }; -#define glibtop_get_uptime(uptime) glibtop_get_uptime__l(glibtop_global_server, uptime) +#define glibtop_get_uptime(uptime) glibtop_get_uptime_l(glibtop_global_server, uptime) #if GLIBTOP_SUID_UPTIME -#define glibtop_get_uptime__r glibtop_get_uptime__p +#define glibtop_get_uptime_r glibtop_get_uptime_p #else -#define glibtop_get_uptime__r glibtop_get_uptime__s +#define glibtop_get_uptime_r glibtop_get_uptime_s #endif -extern void glibtop_get_uptime__l __P((glibtop *, glibtop_uptime *)); +extern void glibtop_get_uptime_l __P((glibtop *, glibtop_uptime *)); #if GLIBTOP_SUID_UPTIME -extern void glibtop_get_uptime__p __P((glibtop *, glibtop_uptime *)); +extern void glibtop_get_uptime_p __P((glibtop *, glibtop_uptime *)); #else -extern void glibtop_get_uptime__s __P((glibtop *, glibtop_uptime *)); +extern void glibtop_get_uptime_s __P((glibtop *, glibtop_uptime *)); #endif #ifdef HAVE_GUILE |