Browse Source

event.c: Fix -Wmissing-prototypes warnings.

master
Reece H. Dunn 7 years ago
parent
commit
ba62f9a162
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      src/libespeak-ng/event.c
  2. 2
    2
      src/libespeak-ng/event.h

+ 2
- 2
src/libespeak-ng/event.c View File

@@ -66,8 +66,8 @@ static node *head = NULL;
static node *tail = NULL;
static int node_counter = 0;
static espeak_ng_STATUS push(void *data);
static void *pop();
static void init();
static void *pop(void);
static void init(void);
static void *polling_thread(void *);

void event_set_callback(t_espeak_callback *SynthCallback)

+ 2
- 2
src/libespeak-ng/event.h View File

@@ -52,14 +52,14 @@ void event_init(void);
void event_set_callback(t_espeak_callback *cb);

// Clear any pending event.
espeak_ng_STATUS event_clear_all();
espeak_ng_STATUS event_clear_all(void);

// Declare a future event
espeak_ng_STATUS event_declare(espeak_EVENT *event);

// Terminate the event component.
// Last function to be called.
void event_terminate();
void event_terminate(void);

// general functions
void clock_gettime2(struct timespec *ts);

Loading…
Cancel
Save