ladybird/AK/kstdio.h
Andreas Kling 7e1cb86da7 LibHTML: Make it possible to build LibHTML on the host.
- "make" builds the normal Serenity libhtml.a
- "make -f Makefile.host" builds a test program for the host machine.
2019-06-22 21:21:57 +02:00

10 lines
141 B
C

#pragma once
#ifdef __serenity__
#include <Kernel/kstdio.h>
#else
#include <stdio.h>
#define kprintf printf
#define dbgprintf printf
#endif