mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:48:12 +00:00

- "make" builds the normal Serenity libhtml.a - "make -f Makefile.host" builds a test program for the host machine.
9 lines
141 B
C
9 lines
141 B
C
#pragma once
|
|
|
|
#ifdef __serenity__
|
|
#include <Kernel/kstdio.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#define kprintf printf
|
|
#define dbgprintf printf
|
|
#endif
|