File: example_fix

package info (click to toggle)
flite 2.1-release-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 83,704 kB
  • sloc: ansic: 693,308; sh: 4,998; lisp: 3,013; cpp: 994; makefile: 905; xml: 52; perl: 33
file content (16 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/doc/flite.texi b/doc/flite.texi
index 8e5f043..b881326 100644
--- a/doc/flite.texi
+++ b/doc/flite.texi
@@ -812,9 +816,9 @@ distribution, the example diphone voice is @code{cmu_us_kal}.
 
 Here is a simple C program that uses the flite library
 @example
-#include "flite.h"
+#include <flite/flite.h>
 
-register_cmu_us_kal();
+cst_voice *register_cmu_us_kal(const char *voxdir)
 
 int main(int argc, char **argv)
 @{