aboutsummaryrefslogtreecommitdiff
path: root/true.c
diff options
context:
space:
mode:
Diffstat (limited to 'true.c')
-rw-r--r--true.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/true.c b/true.c
new file mode 100644
index 0000000..64ceb79
--- /dev/null
+++ b/true.c
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: BSD-3-Clause */
+/*
+ * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
+ */
+#ifdef FASESBOX
+int true_main(int argc, char *argv[]) {
+#else
+int main(int argc, char *argv[]) {
+#endif
+ return 0;
+}