Skip to content
builtin_export.c 398 B
Newer Older
Seblu's avatar
Seblu committed
/*
** builtin_export.c for 42sh in /goinfre/seblu/42sh/src/builtin
**
** Made by Seblu
** Login   <luttri_s@epita.fr>
**
** Started on  Thu May 11 09:32:30 2006 Seblu
** Last update Thu May 11 09:41:01 2006 Seblu
*/

#include <stdio.h>
#include "builtin.h"

int	builtin_export(char *argv[], struct s_42sh *sh)
{
   printf("export: not yet implemeted\n");
   sh = sh;
   argv = argv;
   return 1;
}