blob: 63d44556756b187d12f23cc2bf3e6f72c7f5eeba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
#include <ek/imports.h>
#include <ek/debug.h>
void add_import_path(const char *dir)
{
debug("adding import path %s...\n", dir);
}
|