mirror of
https://github.com/cowmonk/cowos.git
synced 2025-10-28 06:53:26 +00:00
requires -Iinclude flag
This commit is contained in:
parent
59e39d9842
commit
4a736e3dc6
3 changed files with 4 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
#include "../../include/video/vga.h"
|
#include <drivers/video/vga.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
size_t term_row;
|
size_t term_row;
|
||||||
|
|
@ -50,7 +50,7 @@ void
|
||||||
term_write(const char* data, size_t size)
|
term_write(const char* data, size_t size)
|
||||||
{
|
{
|
||||||
for (size_t i = 0; i < size; i++) {
|
for (size_t i = 0; i < size; i++) {
|
||||||
term_putchar(data[i];
|
term_putchar(data[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#include "../include/drivers/video/vga.h"
|
#include <drivers/video/vga.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#include "../include/lib/string.h"
|
#include <string.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue