summaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: afc38aa77adeda72b74a34c5d5f163f23a17b68b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   main.c                                           .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2019/10/29 08:47:37 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2019/10/29 08:47:39 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include <unistd.h>

int
	main(int argc, char *argv[])
{
	char c;
	(void)argc;
	(void)argv;
	while (read(1, &c, 1) > 0)
	{
	}
	return (0);
}