mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
18 lines
181 B
C
18 lines
181 B
C
#ifdef PROTOTYPES
|
|
int shr2(int x)
|
|
#else
|
|
int shr2(x) int x;
|
|
#endif
|
|
{
|
|
return 2*x;
|
|
}
|
|
|
|
#ifdef PROTOTYPES
|
|
int shr2_local(int x)
|
|
#else
|
|
int shr2_local(x) int x;
|
|
#endif
|
|
{
|
|
return 2*x;
|
|
}
|