Raw
1 commit ccf97b9878189c40a981da50b15713bb80a35755326320ec80900caf22ced46f
2 Author: Thomas Rast <trast@student.ethz.ch>
3 Date: Thu Feb 28 10:45:16 2013 +0100
4
5 touch both functions
6
7 diff --git a/a.c b/a.c
8 index 7a296b9..75c0119 100644
9 --- a/a.c
10 +++ b/a.c
11 @@ -3,9 +3,9 @@
12 -int f(int x)
13 +long f(long x)
14 {
15 int s = 0;
16 while (x) {
17 x >>= 1;
18 s++;
19 }
20 return s;
21 }
22
23 commit f6434acd34260a6c9f61e96d96bf9a323d330561df5b1ca2631104f82026dfed
24 Author: Thomas Rast <trast@student.ethz.ch>
25 Date: Thu Feb 28 10:44:55 2013 +0100
26
27 change f()
28
29 diff --git a/a.c b/a.c
30 index 9f550c3..7a296b9 100644
31 --- a/a.c
32 +++ b/a.c
33 @@ -3,8 +3,9 @@
34 int f(int x)
35 {
36 int s = 0;
37 while (x) {
38 x >>= 1;
39 s++;
40 }
41 + return s;
42 }
43
44 commit 1dd7e9b2b1699324b53b341e728653b913bc192a14dfea168c5b51f2b3d03592
45 Author: Thomas Rast <trast@student.ethz.ch>
46 Date: Thu Feb 28 10:44:48 2013 +0100
47
48 initial
49
50 diff --git a/a.c b/a.c
51 new file mode 100644
52 index 0000000..9f550c3
53 --- /dev/null
54 +++ b/a.c
55 @@ -0,0 +3,8 @@
56 +int f(int x)
57 +{
58 + int s = 0;
59 + while (x) {
60 + x >>= 1;
61 + s++;
62 + }
63 +}