 e415d48872
			
		
	
	
		e415d48872
		
	
	
	
	
		
			
			Bumping libc files for unsupported architectures, to simplify merging. A bunch of small fixes: * in libutil update * the macro in endian.h * some undefined types due to clear separation from host. * Fix a warning for cdbr.c Some modification which were required for the new build system: * inclusion path for const.h in sconst, still hacky * Removed default malloc.c which conflicts on some occasions.
		
			
				
	
	
		
			41 lines
		
	
	
		
			349 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			349 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <ieeefp.h>
 | |
| 
 | |
| fp_except
 | |
| fpgetmask(void)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| fp_rnd
 | |
| fpgetround(void)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| fp_except
 | |
| fpgetsticky(void)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /* ARGSUSED */
 | |
| fp_except
 | |
| fpsetmask(fp_except mask)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /* ARGSUSED */
 | |
| fp_rnd
 | |
| fpsetround(fp_rnd rnd_dir)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /* ARGSUSED */
 | |
| fp_except
 | |
| fpsetsticky(fp_except sticky)
 | |
| {
 | |
| 	return 0;
 | |
| }
 |