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
/
gdb6
/
gdb
/
testsuite
/
gdb.base
/
shr1.c
blob
a0257e40233f00e85ed6685d31cfd458c844fe1b
1
#include
"ss.h"
2
#include <stdio.h>
3
4
typedef
float
f
;
5
6
float
sg
=
5.5
;
7
int
sgi
=
2
;
8
static int
sgs
=
7
;
9
10
#ifdef PROTOTYPES
11
int
shr1
(
int
x
)
12
#else
13
int
shr1
(
x
)
14
int
x
;
15
#endif
16
{
17
f mumble
;
18
int
l
;
19
l
=
1
;
20
{
21
int
l
;
22
l
=
2
;
23
}
24
mumble
=
7.7
;
25
sg
=
6.6
;
26
sgi
++;
27
sgs
=
8
;
28
printf
(
"address of sgs is 0x%x
\n
"
, &
sgs
);
29
return
2
*
x
;
30
}
31
32
#ifdef PROTOTYPES
33
static int
shr1_local
(
int
x
)
34
#else
35
static int
shr1_local
(
x
)
36
int
x
;
37
#endif
38
{
39
return
2
*
x
;
40
}
41
42
#ifdef PROTOTYPES
43
int
structarg
(
struct
s x
)
44
#else
45
int
structarg
(
x
)
46
struct
s x
;
47
#endif
48
{
49
return
x
.
a
;
50
}
51
52
#ifdef PROTOTYPES
53
int
pstructarg
(
struct
s
*
x
)
54
#else
55
int
pstructarg
(
x
)
56
struct
s
*
x
;
57
#endif
58
{
59
return
x
->
a
;
60
}
61
62
63