Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 277478 | Differences between
and this patch

Collapse All | Expand All

(-)rsl-v1.40/africa.c (+1 lines)
Lines 22-27 Link Here
22
*/
22
*/
23
#include <stdio.h>
23
#include <stdio.h>
24
#include <stdlib.h>
24
#include <stdlib.h>
25
#include <string.h>
25
#include "africa.h"
26
#include "africa.h"
26
27
27
int africa_read_buffer(FILE *fp, Africa_buffer *buffer)
28
int africa_read_buffer(FILE *fp, Africa_buffer *buffer)
(-)rsl-v1.40/dorade_to_radar.c (-1 / +1 lines)
Lines 24-30 Link Here
24
#include <stdio.h>
24
#include <stdio.h>
25
#include <stdlib.h>
25
#include <stdlib.h>
26
#include <unistd.h>
26
#include <unistd.h>
27
#include <strings.h>
27
#include <string.h>
28
#define USE_RSL_VARS
28
#define USE_RSL_VARS
29
#include "rsl.h"
29
#include "rsl.h"
30
#include "dorade.h"
30
#include "dorade.h"
(-)rsl-v1.40/examples/any_to_gif.c (-1 / +1 lines)
Lines 73-79 Link Here
73
}
73
}
74
74
75
75
76
void main(int argc, char **argv)
76
int main(int argc, char **argv)
77
{
77
{
78
  Radar *radar;
78
  Radar *radar;
79
  Sweep *sweep;
79
  Sweep *sweep;
(-)rsl-v1.40/examples/any_to_ppm.c (-1 / +2 lines)
Lines 9-19 Link Here
9
 * the RSL.
9
 * the RSL.
10
 *
10
 *
11
 */
11
 */
12
#include <stdlib.h>
12
13
13
#define USE_RSL_VARS
14
#define USE_RSL_VARS
14
#include "rsl.h"
15
#include "rsl.h"
15
16
16
void main(int argc, char **argv)
17
int main(int argc, char **argv)
17
{
18
{
18
  Radar *radar;
19
  Radar *radar;
19
  Sweep *sweep;
20
  Sweep *sweep;
(-)rsl-v1.40/examples/cappi_image.c (+1 lines)
Lines 7-12 Link Here
7
 */
7
 */
8
8
9
#include <stdio.h>
9
#include <stdio.h>
10
#include <stdlib.h>
10
#include <string.h>
11
#include <string.h>
11
#include "rsl.h"
12
#include "rsl.h"
12
13
(-)rsl-v1.40/examples/dorade_main.c (+1 lines)
Lines 1-4 Link Here
1
#include <stdio.h>
1
#include <stdio.h>
2
#include <stdlib.h>
2
#include "rsl.h"
3
#include "rsl.h"
3
4
4
int main(int argc, char **argv)
5
int main(int argc, char **argv)
(-)rsl-v1.40/examples/killer_sweep.c (-1 / +1 lines)
Lines 146-152 Link Here
146
  }
146
  }
147
}
147
}
148
148
149
void main(int argc, char **argv)
149
int main(int argc, char **argv)
150
{
150
{
151
  Radar *radar;
151
  Radar *radar;
152
  Sweep *sweep;
152
  Sweep *sweep;
(-)rsl-v1.40/examples/kwaj_subtract_one_day.c (+1 lines)
Lines 1-3 Link Here
1
#include <stdlib.h>
1
#include "rsl.h"
2
#include "rsl.h"
2
3
3
/**********************************************************************/
4
/**********************************************************************/
(-)rsl-v1.40/examples/lassen_to_gif.c (-1 / +2 lines)
Lines 4-12 Link Here
4
 * This program can read the file from stdin.
4
 * This program can read the file from stdin.
5
 */
5
 */
6
6
7
#include <stdlib.h>
7
#include "rsl.h"
8
#include "rsl.h"
8
9
9
void main(int argc, char **argv)
10
int main(int argc, char **argv)
10
{
11
{
11
  Radar *radar;
12
  Radar *radar;
12
13
(-)rsl-v1.40/examples/print_hash_table.c (-1 / +2 lines)
Lines 9-14 Link Here
9
 *
9
 *
10
 */
10
 */
11
11
12
#include <stdlib.h>
12
#include "rsl.h"
13
#include "rsl.h"
13
14
14
void print_link_list(Azimuth_hash *list)
15
void print_link_list(Azimuth_hash *list)
Lines 87-93 Link Here
87
}
88
}
88
89
89
90
90
void main(int argc, char **argv)
91
int main(int argc, char **argv)
91
{
92
{
92
  Radar *radar;
93
  Radar *radar;
93
  Sweep *sweep;
94
  Sweep *sweep;
(-)rsl-v1.40/examples/sector.c (-1 / +2 lines)
Lines 1-4 Link Here
1
#include <stdio.h>
1
#include <stdio.h>
2
#include <stdlib.h>
2
#include "rsl.h"
3
#include "rsl.h"
3
4
4
/*
5
/*
Lines 84-90 Link Here
84
}
85
}
85
86
86
87
87
void main(int argc, char **argv)
88
int main(int argc, char **argv)
88
{
89
{
89
  Radar *radar;
90
  Radar *radar;
90
  Sweep *sector;
91
  Sweep *sector;
(-)rsl-v1.40/examples/wsr88d_to_gif.c (-1 / +2 lines)
Lines 14-22 Link Here
14
 * wsr88d_to_gif file [tape_header_file]
14
 * wsr88d_to_gif file [tape_header_file]
15
 */
15
 */
16
16
17
#include <stdlib.h>
17
#include "rsl.h"
18
#include "rsl.h"
18
19
19
void main(int argc, char **argv)
20
int main(int argc, char **argv)
20
{
21
{
21
  Radar *radar;
22
  Radar *radar;
22
23
(-)rsl-v1.40/lassen_to_radar.c (+1 lines)
Lines 31-36 Link Here
31
31
32
*/
32
*/
33
#include <stdio.h>
33
#include <stdio.h>
34
#include <stdlib.h>
34
#include <unistd.h>
35
#include <unistd.h>
35
#include <string.h>
36
#include <string.h>
36
#include <math.h>
37
#include <math.h>
(-)rsl-v1.40/rainbow.c (+1 lines)
Lines 22-27 Link Here
22
*/
22
*/
23
23
24
#include <stdio.h>
24
#include <stdio.h>
25
#include <stdlib.h>
25
#include <string.h>
26
#include <string.h>
26
#include "rsl.h"
27
#include "rsl.h"
27
#include "rainbow.h"
28
#include "rainbow.h"
(-)rsl-v1.40/rainbow_to_radar.c (+1 lines)
Lines 22-27 Link Here
22
*/
22
*/
23
23
24
#include <stdio.h>
24
#include <stdio.h>
25
#include <stdlib.h>
25
#include <string.h>
26
#include <string.h>
26
#include "rsl.h"
27
#include "rsl.h"
27
#include "rainbow.h"
28
#include "rainbow.h"
(-)rsl-v1.40/wsr88d_m31.c (+2 lines)
Lines 25-30 Link Here
25
 * This file contains routines for processing Message Type 31, the digital
25
 * This file contains routines for processing Message Type 31, the digital
26
 * radar message type introduced in WSR-88D Level II Build 10.
26
 * radar message type introduced in WSR-88D Level II Build 10.
27
 */
27
 */
28
#include <stdlib.h>
29
#include <string.h>
28
30
29
#include "rsl.h"
31
#include "rsl.h"
30
#include "wsr88d.h"
32
#include "wsr88d.h"

Return to bug 277478