1999-06-28 18:06:02 +02:00
|
|
|
#ifdef PROTOTYPES
|
|
|
|
int shr2(int x)
|
|
|
|
#else
|
|
|
|
int shr2(x) int x;
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
return 2*x;
|
|
|
|
}
|
|
|
|
|
1999-06-28 18:06:02 +02:00
|
|
|
#ifdef PROTOTYPES
|
|
|
|
int shr2_local(int x)
|
|
|
|
#else
|
|
|
|
int shr2_local(x) int x;
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
return 2*x;
|
|
|
|
}
|