Browse Source

Remove includes from internal header files.

master
Reece H. Dunn 9 years ago
parent
commit
7d900fb8b0

+ 0
- 2
src/libespeak-ng/espeak_command.h View File

@@ -19,8 +19,6 @@
#ifndef ESPEAK_COMMAND_H
#define ESPEAK_COMMAND_H

#include <unistd.h>

#ifdef __cplusplus
extern "C"
{

+ 1
- 0
src/libespeak-ng/event.c View File

@@ -25,6 +25,7 @@
#include <pthread.h>
#include <semaphore.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>

+ 2
- 0
src/libespeak-ng/fifo.c View File

@@ -24,6 +24,7 @@
#include <errno.h>
#include <pthread.h>
#include <semaphore.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
@@ -34,6 +35,7 @@
#include <espeak-ng/espeak_ng.h>

#include "speech.h"
#include "espeak_command.h"
#include "fifo.h"
#include "wave.h"


+ 0
- 2
src/libespeak-ng/fifo.h View File

@@ -22,8 +22,6 @@
// Helps to add espeak commands in a first-in first-out queue
// and run them asynchronously.

#include "espeak_command.h"

#ifdef __cplusplus
extern "C"
{

+ 2
- 0
src/libespeak-ng/speech.c View File

@@ -23,6 +23,7 @@
#include <ctype.h>
#include <errno.h>
#include <locale.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -46,6 +47,7 @@
#include "synthesize.h"
#include "voice.h"
#include "translate.h"
#include "espeak_command.h"
#include "fifo.h"
#include "event.h"
#include "wave.h"

+ 0
- 2
src/libespeak-ng/speech.h View File

@@ -20,8 +20,6 @@
#ifndef SPEECH_H
#define SPEECH_H

#include <sys/types.h>

#ifdef __cplusplus
extern "C"
{

+ 1
- 0
src/libespeak-ng/wave.c View File

@@ -22,6 +22,7 @@
#include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

+ 1
- 5
src/libespeak-ng/wave.h View File

@@ -1,6 +1,6 @@
/*
* Copyright (C) 2007, Gilles Casse <[email protected]>
* Copyright (C) 2015 Reece H. Dunn
* Copyright (C) 2015-2016 Reece H. Dunn
* based on AudioIO.cc (Audacity-1.2.4b) and wavegen.cpp
*
* This program is free software; you can redistribute it and/or modify
@@ -20,10 +20,6 @@
#ifndef WAVE_H
#define WAVE_H

#ifndef PLATFORM_DOS
#include "stdint.h"
#endif

#ifdef __cplusplus
extern "C"
{

Loading…
Cancel
Save