Fix: out of tree build by adding missing ini.c include
[lttng-tools.git] / src / common / config / ini.c
index 7462aeb35d224a2e414dedbafd5918026e31113e..7b2a4b6530ac478434021edc0b65ea13a13c51df 100644 (file)
  * http://code.google.com/p/inih/
  */
 
+#define _GNU_SOURCE
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
+#include <common/common.h>
 
 #include "ini.h"
 
@@ -87,6 +89,7 @@ static char* strncpy0(char* dest, const char* src, size_t size)
 }
 
 /* See documentation in header file. */
+LTTNG_HIDDEN
 int ini_parse_file(FILE* file, ini_entry_handler handler, void* user)
 {
        /* Uses a fair bit of stack (use heap instead if you need to) */
@@ -199,6 +202,7 @@ int ini_parse_file(FILE* file, ini_entry_handler handler, void* user)
 }
 
 /* See documentation in header file. */
+LTTNG_HIDDEN
 int ini_parse(const char* filename, ini_entry_handler handler, void* user)
 {
        FILE* file;
This page took 0.023433 seconds and 4 git commands to generate.