mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 16:28:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			327 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| namespace std {
 | |
| class ios_base {
 | |
| public:
 | |
|   typedef int io_state;
 | |
|   typedef int open_mode;
 | |
|   typedef int seek_dir;
 | |
| 
 | |
|   typedef int streampos;
 | |
|   typedef int streamoff;
 | |
| };
 | |
| 
 | |
| template <class CharT>
 | |
| class basic_ios : public ios_base {
 | |
| };
 | |
| } // namespace std
 | |
| 
 | |
| // Test function return values (declaration)
 | |
| std::ios_base::io_state f_5();
 | 
