Changes of Revision 4

shorten.patch Changed
x
 
1
@@ -1,10 +1,17 @@
2
 ---
3
- src/fixio.c |    1 +
4
- 1 file changed, 1 insertion(+)
5
+ src/fixio.c |    9 +++++----
6
+ 1 file changed, 5 insertions(+), 4 deletions(-)
7
 
8
 --- a/src/fixio.c
9
 +++ b/src/fixio.c
10
-@@ -13,6 +13,7 @@
11
+@@ -10,16 +10,17 @@
12
+  * $Id: fixio.c,v 1.4 2002/01/28 01:16:52 jason Exp $
13
+  */
14
+ 
15
++#ifdef HAVE_CONFIG_H
16
++#include "config.h"
17
++#endif
18
++#define _XOPEN_SOURCE
19
  #include <stdio.h>
20
  #include <stdlib.h>
21
  #include <string.h>
22
@@ -12,3 +19,10 @@
23
  #include "shorten.h"
24
  #include "bitshift.h"
25
  
26
+-#ifdef HAVE_CONFIG_H
27
+-#include "config.h"
28
+-#endif
29
+-
30
+ extern int WriteWaveFile;
31
+ 
32
+ #define CAPMAXSCHAR(x)  ((x > 127) ? 127 : x)
33