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

@@ -126,7 +126,7 @@ FILE *f_wavfile = NULL;
char filetype[5];
char wavefile[200];

void DisplayVoices(FILE *f_out, char *language)
static void DisplayVoices(FILE *f_out, char *language)
{
int ix;
const char *p;
@@ -197,7 +197,7 @@ static void Write4Bytes(FILE *f, int value)
}
}

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

Loading…
Cancel
Save