aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/support.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/support.h b/src/support.h
index 95bde4691..f7c08325d 100644
--- a/src/support.h
+++ b/src/support.h
@@ -1,10 +1,14 @@
#ifndef SUPPORT_H
#define SUPPORT_H
+#include "config.h"
+
#include <glib.h>
const char *strcasestr(const char *haystack, const char *needle);
+#ifndef NCMPC_MINI
+
typedef struct {
gsize offset;
GTime t; /* GTime is equivalent to time_t */
@@ -13,3 +17,5 @@ typedef struct {
char *strscroll(char *str, char *separator, int width, scroll_state_t *st);
#endif
+
+#endif