mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 11:25:37 +00:00
14 lines
345 B
C
14 lines
345 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_FUNCTIONS_CUSTOM_TARGET_H
|
|
#define MUON_FUNCTIONS_CUSTOM_TARGET_H
|
|
#include "functions/common.h"
|
|
|
|
bool custom_target_is_linkable(struct workspace *wk, obj ct);
|
|
|
|
extern const struct func_impl impl_tbl_custom_target[];
|
|
#endif
|