ClassicOS/kernel/print.c

6 lines
81 B
C

#include <stdio.h>
void print_string(const char *str)
{
printf("%s", str);
}