mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			217 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			217 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #ifdef __serenity__
 | |
| #include <Kernel/kstdio.h>
 | |
| #else
 | |
| #include <stdio.h>
 | |
| #define kprintf printf
 | |
| #define dbgprintf printf
 | |
| #define dbgputstr(characters, length) fwrite(characters, 1, length, stdout)
 | |
| #endif
 | 
