/* ** builtin_set.c for 42sh in /goinfre/seblu/42sh/src/builtin ** ** Made by Seblu ** Login ** ** Started on Thu May 11 09:32:30 2006 Seblu ** Last update Thu May 11 09:38:54 2006 Seblu */ #include #include "builtin.h" int builtin_set(char *argv[], struct s_42sh *sh) { printf("set: not yet implemeted\n"); sh = sh; argv = argv; return 1; }