mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibC/errno.h>
 | |
| #include <LibC/ifaddrs.h>
 | |
| 
 | |
| int getifaddrs(struct ifaddrs**)
 | |
| {
 | |
|     errno = ENOSYS;
 | |
|     return -1;
 | |
| }
 | |
| 
 | |
| void freeifaddrs(struct ifaddrs*)
 | |
| {
 | |
| }
 | 
