-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
19 lines (17 loc) · 964 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ttshabal <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/02/18 08:12:59 by ttshabal #+# #+# */
/* Updated: 2018/02/18 08:14:58 by ttshabal ### ########.fr */
/* */
/* ************************************************************************** */
void rush(int a, int b);
int main(void)
{
rush(5, 3);
return (0);
}