mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 01:59:14 +03:00
7e1cb86da7
- "make" builds the normal Serenity libhtml.a - "make -f Makefile.host" builds a test program for the host machine.
10 lines
141 B
C
10 lines
141 B
C
#pragma once
|
|
|
|
#ifdef __serenity__
|
|
#include <Kernel/kstdio.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#define kprintf printf
|
|
#define dbgprintf printf
|
|
#endif
|