diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-06-03 09:31:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-03 09:31:01 +0200 |
| commit | 6511afbf405c31513bc88ab06bca58218610a994 (patch) | |
| tree | e2509b7f9b59643b2a97773604aa383a2fd2e2f3 /public/tools | |
| parent | 5c0bb7ee7b1b0fee02cc179fb21f4c57a61d6c2d (diff) | |
| parent | bebcbe04c2b47b3b4fcdc093b1736cc0295109fe (diff) | |
Merge pull request #36 from nekernel-org/dev
0.0.3 — NeKernel
Diffstat (limited to 'public/tools')
| -rw-r--r-- | public/tools/cc/src/CommandLine.cc | 2 | ||||
| -rw-r--r-- | public/tools/ld.dyn/src/CommandLine.cc | 6 | ||||
| -rw-r--r-- | public/tools/ld.fwrk/src/CommandLine.cc | 6 | ||||
| -rw-r--r-- | public/tools/manual/src/CommandLine.cc | 6 | ||||
| -rw-r--r-- | public/tools/mgmt/src/CommandLine.cc | 2 | ||||
| -rw-r--r-- | public/tools/mk.fwrk/Common.h | 2 | ||||
| -rw-r--r-- | public/tools/mk.fwrk/src/CommandLine.cc | 2 | ||||
| -rw-r--r-- | public/tools/mk.hefs/src/CommandLine.cc | 6 | ||||
| -rw-r--r-- | public/tools/mk.nefs/src/CommandLine.cc | 6 | ||||
| -rw-r--r-- | public/tools/open/src/CommandLine.cc | 2 | ||||
| -rw-r--r-- | public/tools/ping/src/CommandLine.cc | 4 |
11 files changed, 22 insertions, 22 deletions
diff --git a/public/tools/cc/src/CommandLine.cc b/public/tools/cc/src/CommandLine.cc index f1c72b64..62757c43 100644 --- a/public/tools/cc/src/CommandLine.cc +++ b/public/tools/cc/src/CommandLine.cc @@ -4,7 +4,7 @@ * Copyright (c) 2024-2025 Amlal El Mahrouss */ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> /// @brief Placeholder program. diff --git a/public/tools/ld.dyn/src/CommandLine.cc b/public/tools/ld.dyn/src/CommandLine.cc index e76c34a7..e64e7837 100644 --- a/public/tools/ld.dyn/src/CommandLine.cc +++ b/public/tools/ld.dyn/src/CommandLine.cc @@ -4,15 +4,15 @@ * Copyright (c) 2024-2025 Amlal El Mahrouss */ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> /// @brief Library loader. #define DYNLIB_FLAG "-dyn" SInt32 _NeMain(SInt32 argc, Char* argv[]) { - SCI_UNUSED(argc); - SCI_UNUSED(argv); + LIBSYS_UNUSED(argc); + LIBSYS_UNUSED(argv); PrintOut(nullptr, "%s", "ld.dyn: Dynamic Loader.\n"); PrintOut(nullptr, "%s", "ld.dyn: © 2024-2025 Amlal El Mahrouss, All rights reserved.\n"); diff --git a/public/tools/ld.fwrk/src/CommandLine.cc b/public/tools/ld.fwrk/src/CommandLine.cc index e7a6e5ca..323e58c7 100644 --- a/public/tools/ld.fwrk/src/CommandLine.cc +++ b/public/tools/ld.fwrk/src/CommandLine.cc @@ -4,13 +4,13 @@ * Copyright (c) 2024-2025 Amlal El Mahrouss */ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> /// @brief This program loads a code framework into Kernel's memory. SInt32 _NeMain(SInt32 argc, Char* argv[]) { - SCI_UNUSED(argc); - SCI_UNUSED(argv); + LIBSYS_UNUSED(argc); + LIBSYS_UNUSED(argv); PrintOut(nullptr, "%s", "ld.fwrk: Framework Loader.\n"); PrintOut(nullptr, "%s", "ld.fwrk: © 2024-2025 Amlal El Mahrouss, All rights reserved.\n"); diff --git a/public/tools/manual/src/CommandLine.cc b/public/tools/manual/src/CommandLine.cc index 0704384a..8c75d565 100644 --- a/public/tools/manual/src/CommandLine.cc +++ b/public/tools/manual/src/CommandLine.cc @@ -1,8 +1,8 @@ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> SInt32 _NeMain(SInt32 argc, Char* argv[]) { - SCI_UNUSED(argc); - SCI_UNUSED(argv); + LIBSYS_UNUSED(argc); + LIBSYS_UNUSED(argv); if (argc < 2) { PrintOut(nullptr, "HELP: manual <tutorial_name>\n"); diff --git a/public/tools/mgmt/src/CommandLine.cc b/public/tools/mgmt/src/CommandLine.cc index f3840d01..6015988e 100644 --- a/public/tools/mgmt/src/CommandLine.cc +++ b/public/tools/mgmt/src/CommandLine.cc @@ -1,4 +1,4 @@ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> SInt32 _NeMain(SInt32 argc, Char* argv[]) { return EXIT_FAILURE; diff --git a/public/tools/mk.fwrk/Common.h b/public/tools/mk.fwrk/Common.h index 89e52471..8e434043 100644 --- a/public/tools/mk.fwrk/Common.h +++ b/public/tools/mk.fwrk/Common.h @@ -7,6 +7,6 @@ #define APPS_COMMON_H #include <CoreFoundation.fwrk/headers/Foundation.h> -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> #endif // APPS_COMMON_H diff --git a/public/tools/mk.fwrk/src/CommandLine.cc b/public/tools/mk.fwrk/src/CommandLine.cc index 4ef7240a..87945ddc 100644 --- a/public/tools/mk.fwrk/src/CommandLine.cc +++ b/public/tools/mk.fwrk/src/CommandLine.cc @@ -7,7 +7,7 @@ #include <Framework.h> #include <Steps.h> -#include <libSystem/ProcessCodes.h> +#include <libSystem/SystemKit/Err.h> #include <CoreFoundation.fwrk/headers/Array.h> diff --git a/public/tools/mk.hefs/src/CommandLine.cc b/public/tools/mk.hefs/src/CommandLine.cc index 711009d5..91a3527d 100644 --- a/public/tools/mk.hefs/src/CommandLine.cc +++ b/public/tools/mk.hefs/src/CommandLine.cc @@ -4,13 +4,13 @@ * Copyright (c) 2025 Amlal El Mahrouss */ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> /// @brief Placeholder program. SInt32 _NeMain(SInt32 argc, Char* argv[]) { - SCI_UNUSED(argc); - SCI_UNUSED(argv); + LIBSYS_UNUSED(argc); + LIBSYS_UNUSED(argv); return EXIT_FAILURE; } diff --git a/public/tools/mk.nefs/src/CommandLine.cc b/public/tools/mk.nefs/src/CommandLine.cc index 711009d5..91a3527d 100644 --- a/public/tools/mk.nefs/src/CommandLine.cc +++ b/public/tools/mk.nefs/src/CommandLine.cc @@ -4,13 +4,13 @@ * Copyright (c) 2025 Amlal El Mahrouss */ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> /// @brief Placeholder program. SInt32 _NeMain(SInt32 argc, Char* argv[]) { - SCI_UNUSED(argc); - SCI_UNUSED(argv); + LIBSYS_UNUSED(argc); + LIBSYS_UNUSED(argv); return EXIT_FAILURE; } diff --git a/public/tools/open/src/CommandLine.cc b/public/tools/open/src/CommandLine.cc index 6fa4e2f2..e02fcebc 100644 --- a/public/tools/open/src/CommandLine.cc +++ b/public/tools/open/src/CommandLine.cc @@ -4,7 +4,7 @@ * Copyright (c) 2024-2025 Amlal El Mahrouss */ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> /// @brief This program opens an application from **OPEN_APP_BASE_PATH** /// @file CommandLine.cc diff --git a/public/tools/ping/src/CommandLine.cc b/public/tools/ping/src/CommandLine.cc index f5c82b80..a9ba177a 100644 --- a/public/tools/ping/src/CommandLine.cc +++ b/public/tools/ping/src/CommandLine.cc @@ -1,7 +1,7 @@ -#include <libSystem/System.h> +#include <libSystem/SystemKit/System.h> SInt32 _NeMain(SInt32 argc, Char* argv[]) { - SCI_UNUSED(argc); + LIBSYS_UNUSED(argc); if (argc < 2) { PrintOut(nullptr, "HELP: ping <hostname>\n"); |
