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
/
solib2.c
blob
8c69d8b273e3f71f0ac40a9be5beba91852e0556
1
/* This program is intended to be built as an HP-UX SOM shared
2
library, for use by the solib.exp testcase. It simply returns
3
the cube of its integer argument.
4
*/
5
#ifdef __cplusplus
6
extern
"C"
{
7
#endif
8
#ifdef PROTOTYPES
9
int
solib_main
(
int
arg
)
10
#else
11
int
solib_main
(
arg
)
12
int
arg
;
13
#endif
14
{
15
return
arg
*
arg
*
arg
;
16
}
17
#ifdef __cplusplus
18
}
19
#endif