cbb440b8e9
Signed-off-by: Chloe M <chloe@mensia.org>
19 lines
293 B
C
19 lines
293 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: ELF64 loader
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _EX_ELF64_H_
|
|
#define _EX_ELF64_H_ 1
|
|
|
|
#include <ex/loader.h>
|
|
#include <ptdef.h>
|
|
|
|
/* Externs */
|
|
extern LOADER_OPS gElf64Ops;
|
|
|
|
#endif /* !_EX_ELF64_H_ */
|