From a22b4c537e71969345d77cdea6f4263f3eaf0370 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 29 Apr 2021 23:37:26 +0200 Subject: [PATCH] More TinyGLib fixes. --- src/include/tinyglib.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/include/tinyglib.h b/src/include/tinyglib.h index 2d2b25d7f..7c6e0b890 100644 --- a/src/include/tinyglib.h +++ b/src/include/tinyglib.h @@ -127,11 +127,11 @@ extern gboolean g_spawn_async_with_fds(const gchar *working_directory, gchar **a gchar **envp, GSpawnFlags flags, GSpawnChildSetupFunc child_setup, gpointer user_data, GPid *child_pid, gint stdin_fd, - gint stdout_fd, gint stderr_fd, GError **error) __attribute__((__unused__)); -extern GString *g_string_new(gchar *base) __attribute__((__unused__)); -extern gchar *g_string_free(GString *string, gboolean free_segment) __attribute__((__unused__)); -extern gchar *g_strstr_len(const gchar *haystack, gssize haystack_len, const gchar *needle) __attribute__((__unused__)); -extern guint g_strv_length(gchar **str_array) __attribute__((__unused__)); + gint stdout_fd, gint stderr_fd, GError **error); +extern GString *g_string_new(gchar *base); +extern gchar *g_string_free(GString *string, gboolean free_segment); +extern gchar *g_strstr_len(const gchar *haystack, gssize haystack_len, const gchar *needle); +extern guint g_strv_length(gchar **str_array); /* Macros */