42-archive/42sh/src/exec/plaunch_empty.c
2017-03-17 20:45:27 +01:00

20 lines
977 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* process_empty.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/13 17:26:01 by jhalford #+# #+# */
/* Updated: 2017/03/17 20:23:18 by wescande ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
int plaunch_empty(t_process *p)
{
(void)p;
return (0);
}