mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			134 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			134 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <mntent.h>
 | |
| #include <assert.h>
 | |
| 
 | |
| extern "C" {
 | |
| 
 | |
| struct mntent* getmntent(FILE*)
 | |
| {
 | |
|     assert(false);
 | |
|     return nullptr;
 | |
| }
 | |
| 
 | |
| }
 | |
| 
 | 
