diff options
author | Mattias Andrée <maandree@kth.se> | 2021-07-13 02:44:18 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-07-13 02:44:18 +0200 |
commit | bc9033fdf30424c34008e651fdbbba5da8c8fc40 (patch) | |
tree | 995bc6bbd067cf6bebe1a6e6f74e210b11df1a8a /special_builtins.c | |
parent | Second commit (diff) | |
download | apsh-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 '')
-rw-r--r-- | special_builtins.c | 11 |
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; +} |