repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
991214-2.c
blob
3e18d215e1391c912ccaeb0719d2eda7170d72db
1
#if defined(STACK_SIZE) && (STACK_SIZE < 65536)
2
# define HISTO_SIZE 9
3
#else
4
# define HISTO_SIZE 36
5
#endif
6
7
extern
int
N
;
8
extern
int
nrows
;
9
extern
int
or_num_angles
;
10
11
typedef
struct
12
{
13
double
value
;
14
int
count
;
15
}
Histo
;
16
17
Histo add_histo
[
10
][
2
][
HISTO_SIZE
][
HISTO_SIZE
];
18
19
void
cmd_connection_statistics
( )
20
{
21
int
i
,
j
,
k
,
m
;
22
23
for
(
i
=
0
;
i
<
nrows
;
i
++){
24
for
(
j
=
0
;
j
<
2
;
j
++)
25
for
(
k
=
0
;
k
<
or_num_angles
;
k
++)
26
;
27
}
28
}