aboutsummaryrefslogtreecommitdiffstats
path: root/special_builtins.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-07-13 02:44:18 +0200
committerMattias Andrée <maandree@kth.se>2021-07-13 02:44:18 +0200
commitbc9033fdf30424c34008e651fdbbba5da8c8fc40 (patch)
tree995bc6bbd067cf6bebe1a6e6f74e210b11df1a8a /special_builtins.c
parentSecond commit (diff)
downloadapsh-bc9033fdf30424c34008e651fdbbba5da8c8fc40.tar.gz
apsh-bc9033fdf30424c34008e651fdbbba5da8c8fc40.tar.bz2
apsh-bc9033fdf30424c34008e651fdbbba5da8c8fc40.tar.xz
Third commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'special_builtins.c')
-rw-r--r--special_builtins.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/special_builtins.c b/special_builtins.c
new file mode 100644
index 0000000..20e37ae
--- /dev/null
+++ b/special_builtins.c
@@ -0,0 +1,11 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+int
+colon_main(int argc, char **argv)
+{
+ (void) argc;
+ (void) argv;
+ return 0;
+}