summaryrefslogtreecommitdiffhomepage
path: root/tools/ld64.cc
blob: ebdcb47a9b9b1c84bce61b9962360417c70587cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -------------------------------------------

  Copyright (C) 2024-2025 Amlal EL Mahrouss, all rights reserved

------------------------------------------- */

#include <LibCompiler/Defines.h>

/// @file ld64.cxx
/// @brief NE Linker for AE objects.

LC_IMPORT_C int DynamicLinker64PEF(int argc, char const* argv[]);

int main(int argc, char const* argv[]) {
  return DynamicLinker64PEF(argc, argv);
}