11 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "f2c.h"
 | 
						|
 | 
						|
extern integer s_cmp();
 | 
						|
 | 
						|
shortint h_sign(a,b)
 | 
						|
shortint *a, *b;
 | 
						|
{
 | 
						|
shortint x;
 | 
						|
x = (*a >= 0 ? *a : - *a);
 | 
						|
return( *b >= 0 ? x : -x);
 | 
						|
}
 |