I am developing a project for Minix in C Language and I have a folder to put the drivers of the devices called core
. In the main.c
I did an include of the vbe.h
that is inside this folder and the make
give me allways an error of bad syntax.
I tried two ways:
#include "./core/vbe.h"
#include "core/vbe.h"
I have always an error!
Can anyone help me?