Browse Source

espeak-ng.c: Fix -Wmissing-prototypes warnings.

master
Reece H. Dunn 7 years ago
parent
commit
941f439ca7
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/espeak-ng.c

+ 2
- 2
src/espeak-ng.c View File

char filetype[5]; char filetype[5];
char wavefile[200]; char wavefile[200];


void DisplayVoices(FILE *f_out, char *language)
static void DisplayVoices(FILE *f_out, char *language)
{ {
int ix; int ix;
const char *p; const char *p;
} }
} }


int OpenWavFile(char *path, int rate)
static int OpenWavFile(char *path, int rate)
{ {
static unsigned char wave_hdr[44] = { static unsigned char wave_hdr[44] = {
'R', 'I', 'F', 'F', 0x24, 0xf0, 0xff, 0x7f, 'W', 'A', 'V', 'E', 'f', 'm', 't', ' ', 'R', 'I', 'F', 'F', 0x24, 0xf0, 0xff, 0x7f, 'W', 'A', 'V', 'E', 'f', 'm', 't', ' ',

Loading…
Cancel
Save