summaryrefslogtreecommitdiff
path: root/src/surface
diff options
context:
space:
mode:
Diffstat (limited to 'src/surface')
-rw-r--r--src/surface/x.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/surface/x.c b/src/surface/x.c
index 96ec69f..2b8d3bf 100644
--- a/src/surface/x.c
+++ b/src/surface/x.c
@@ -7,6 +7,7 @@
*/
#define _XOPEN_SOURCE 500
+#define NEED_HINTS_ALLOC
#include <stdbool.h>
#include <stdlib.h>
@@ -34,13 +35,13 @@
#include "cursor.h"
#if defined(NEED_HINTS_ALLOC)
-xcb_size_hints_t *
+static xcb_size_hints_t *
xcb_alloc_size_hints(void)
{
return calloc(1, sizeof(xcb_size_hints_t));
}
-void
+static void
xcb_free_size_hints(xcb_size_hints_t *hints)
{
free(hints);