mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:52:43 +00:00 
			
		
		
		
	 39f92fa131
			
		
	
	
		39f92fa131
		
	
	
	
	
		
			
			Just like Dr. POSIX ordered. Move the macro where it belongs, but make sure it's visible to Userland files compiled with -DKERNEL. Parts of LibEDID that are compiled into the Kernel use offsetof to parse the EDID information given to us by hardware.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			420 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			420 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #define offsetof(type, member) __builtin_offsetof(type, member)
 | |
| 
 | |
| #ifndef KERNEL
 | |
| 
 | |
| #    include <sys/cdefs.h>
 | |
| 
 | |
| #    ifdef __cplusplus
 | |
| #        define NULL nullptr
 | |
| #    else
 | |
| #        define NULL ((void*)0)
 | |
| #    endif
 | |
| 
 | |
| typedef __PTRDIFF_TYPE__ ptrdiff_t;
 | |
| typedef __SIZE_TYPE__ size_t;
 | |
| 
 | |
| #endif
 |