Add <string.h>

Fixes missing strlen()
This commit is contained in:
Lassi Kortela 2023-02-13 15:43:20 +02:00
parent 8046a10a7a
commit 4011143b81
1 changed files with 2 additions and 1 deletions

View File

@ -31,8 +31,9 @@
#ifndef KERNEL_H
#define KERNEL_H
#include <stdio.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include "site.h"
#include "funcproto.h"