From 2237e1c3d61bc3e8d90feca98799987d9b61563c Mon Sep 17 00:00:00 2001 From: Bruno Jahel Date: Mon, 23 Feb 2015 01:12:33 -0500 Subject: [PATCH 1/2] Update gitPractice.c --- gitPractice.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gitPractice.c b/gitPractice.c index 6ca7f4e..d907835 100644 --- a/gitPractice.c +++ b/gitPractice.c @@ -4,6 +4,7 @@ Add a statement that prints your name in main */ void Preston(int); +void Bruno(); #include @@ -11,6 +12,7 @@ int main() { puts("Lonnie Bowe"); Preston(0); + Bruno(); return 0; } @@ -27,3 +29,7 @@ void Preston(int index) Preston(index + 1); } } + +void Bruno(){ + printf("Bruno Jahel\n"); +} From a5a5ec9a1bbc371586a318f1c96f9766d84ee1e8 Mon Sep 17 00:00:00 2001 From: Denny Hood Date: Fri, 27 Feb 2015 18:39:56 -0500 Subject: [PATCH 2/2] Update gitPractice.c --- gitPractice.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gitPractice.c b/gitPractice.c index d907835..cb6363f 100644 --- a/gitPractice.c +++ b/gitPractice.c @@ -13,6 +13,7 @@ int main() puts("Lonnie Bowe"); Preston(0); Bruno(); + puts("Denny Hood"); return 0; }