Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 16ffa6443e279a9b3b63d7a2bebeb07833506010 authored by Junio C Hamano on 02 September 2015, 19:55:21 UTC
Git 2.6-rc0
Tip revision: 16ffa64
patch2.patch
diff --git a/main.c b/main.c
--- a/main.c
+++ b/main.c
@@ -1,7 +1,9 @@
+#include <stdlib.h>
 #include <stdio.h>
 
 int func(int num);
 void print_int(int num);
+void print_ln();
 
 int main() {
 	int i;
@@ -10,6 +12,8 @@
 		print_int(func(i));
 	}
 
+	print_ln();
+
 	return 0;
 }
 
@@ -21,3 +25,7 @@
 	printf("%d", num);
 }
 
+void print_ln() {
+	printf("\n");
+}
+
back to top