mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	* configure.in (libc_cv_asm_global_directive): Indent .text in test code so that the lame HPUX compiler recognizes it. * sysdeps/hppa/bits/endian.h: New file. * sysdeps/unix/sysv/hpux/bits/errno.h: New file. * sysdeps/unix/sysv/hpux/bits/setjmp.h: New file. * sysdeps/unix/sysv/hpux/bits/stat.h: New file. * sysdeps/unix/sysv/hpux/bits/types.h: New file.
		
			
				
	
	
		
			17 lines
		
	
	
		
			370 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			370 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Define the machine-dependent type `jmp_buf'.  Stub version.  */
 | |
| 
 | |
| #ifndef _SETJMP_H
 | |
| # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
 | |
| #endif
 | |
| 
 | |
| /* XXX This should go into different files!!! */
 | |
| 
 | |
| #ifdef __hp9000s300
 | |
| typedef int __jmp_buf[100];
 | |
| #endif /* __hp9000s300 */
 | |
| 
 | |
| #ifdef __hp9000s800
 | |
| typedef double __jmp_buf[25];
 | |
| #endif /* __hp9000s800 */
 | |
| 
 |