You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
181 B

#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;
}