mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <assert.h>
 | |
| #include <ulimit.h>
 | |
| 
 | |
| extern "C" {
 | |
| 
 | |
| long ulimit(int cmd, long newlimit)
 | |
| {
 | |
|     (void)cmd;
 | |
|     (void)newlimit;
 | |
|     ASSERT_NOT_REACHED();
 | |
|     return -1;
 | |
| }
 | |
| }
 | 
