Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions core/config_reader.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License: GPLv3
*/

#include <stdlib.h>
#include <string.h>
#include "config_reader.h"
#include <xml_defs.h>
Expand Down
2 changes: 1 addition & 1 deletion core/controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ typedef struct {
int mperiod;
} s_adapter;

int adapter_detect();
e_gimx_status adapter_detect();
int adapter_start();
int adapter_send();
e_gimx_status adapter_clean();
Expand Down
1 change: 1 addition & 0 deletions core/gimx.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include <signal.h> //to catch SIGINT
#include <errno.h> //to print errors
#include <string.h> //to print errors
#include <stdlib.h> //free()
#include <limits.h> //PATH_MAX

#ifndef WIN32
Expand Down