aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2024-07-03 16:29:03 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2024-07-03 16:29:03 +0200
commit21334981a816e87f62c22f13eec0b201b589ced0 (patch)
tree9ce05840fa53e64f4d497e5976388a81b81e3d5c
parent306bc5a3666c4e4fc4a8b671fe3c1b76885b659b (diff)
parent4a0973c4bb834807cc4a9a67d90cd0d03e2697ae (diff)
downloadayatana-indicator-session-21334981a816e87f62c22f13eec0b201b589ced0.tar.gz
ayatana-indicator-session-21334981a816e87f62c22f13eec0b201b589ced0.tar.bz2
ayatana-indicator-session-21334981a816e87f62c22f13eec0b201b589ced0.zip
Merge branch 'gber-personal/gber/fix-declarations'
Attributes GH PR #99: https://github.com/AyatanaIndicators/ayatana-indicator-session/pull/99
-rw-r--r--src/utils.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/utils.h b/src/utils.h
index d57eebe..4ed1835 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -18,13 +18,12 @@
#define __INDICATOR_SESSION_UTILS_H__
#include <glib.h>
-#include <string.h>
-const char* get_distro_name();
-const char* get_distro_url();
-const char* get_distro_bts_url();
-const char* get_desktop_name();
-const char* get_desktop_session();
-GHashTable* get_os_release();
+const char* get_distro_name(void);
+const char* get_distro_url(void);
+const char* get_distro_bts_url(void);
+const char* get_desktop_name(void);
+const char* get_desktop_session(void);
+GHashTable* get_os_release(void);
#endif /* __INDICATOR_SESSION_UTILS_H__ */