Skip to content

Commit fe5f284

Browse files
author
root
committed
morning-commit_11-11.2020
1 parent c1d8804 commit fe5f284

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

LFS/new.patch

Whitespace-only changes.

LFS/pg_new.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <stdio.h>
2+
// command line argumments
3+
int main(int argc, char *argv[])
4+
{
5+
printf("samplecale\n");
6+
return 0;
7+
}

LFS/pgm.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <stdio.h>
2+
// command line argumments
3+
int main(int argc, char *argv[])
4+
{
5+
printf("Hello World\n");
6+
return 0;
7+
}

LFS/pgm.c.orig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <stdio.h>
2+
// without command line argumments
3+
int main()
4+
{
5+
printf("Hello World\n");
6+
}

0 commit comments

Comments
 (0)