diff --git a/src/licence.h b/src/licence.h deleted file mode 100644 index 7f9f5bf..0000000 --- a/src/licence.h +++ /dev/null @@ -1,35 +0,0 @@ -/* Copyright (C) vx_clutch - * - * This file is part of yait - * - * This project and file is licensed under the BSD-3-Clause licence. - * - */ - -#ifndef LICENCE_H -#define LICENCE_H - -#include - -#include "../include/yait.h" - -static char *lget(licence_t licence) -{ - switch (licence) { - case UNL: - return ""; - case MIT: - return ""; - case GPL: - return ""; - case BSD: - return ""; - - case _LICENCE_COUNT_: - default: - abort(); - } - return ""; -} - -#endif