summaryrefslogtreecommitdiff
path: root/projects/sample
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-04-23 21:26:11 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-04-23 21:26:11 +0000
commitb02fbfc485a68cebeede24810b0cd8f0d97c9e51 (patch)
treec44f886c776fce1bb30ce3e77db96f879cadbe7d /projects/sample
parentcc1f24585e7d23fd6622c17099159cdc038ee618 (diff)
Eliminate tabs and trailing spaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21479 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/sample')
-rw-r--r--projects/sample/include/sample.h4
-rw-r--r--projects/sample/lib/sample/sample.c8
-rw-r--r--projects/sample/tools/sample/main.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/projects/sample/include/sample.h b/projects/sample/include/sample.h
index db3441f76ff..b3ce9ce2928 100644
--- a/projects/sample/include/sample.h
+++ b/projects/sample/include/sample.h
@@ -1,8 +1,8 @@
/*
* File: sample.h
*
- * This is a sample header file that is global to the entire project.
- * It is located here so that everyone will find it.
+ * This is a sample header file that is global to the entire project.
+ * It is located here so that everyone will find it.
*/
extern int compute_sample (int a);
diff --git a/projects/sample/lib/sample/sample.c b/projects/sample/lib/sample/sample.c
index 631a48d1ad1..73c1fee79b2 100644
--- a/projects/sample/lib/sample/sample.c
+++ b/projects/sample/lib/sample/sample.c
@@ -2,9 +2,9 @@
* File: sample.c
*
* Description:
- * This is a sample source file for a library. It helps to demonstrate
- * how to setup a project that uses the LLVM build system, header files,
- * and libraries.
+ * This is a sample source file for a library. It helps to demonstrate
+ * how to setup a project that uses the LLVM build system, header files,
+ * and libraries.
*/
#include <stdio.h>
@@ -19,6 +19,6 @@
int
compute_sample (int a)
{
- return a;
+ return a;
}
diff --git a/projects/sample/tools/sample/main.c b/projects/sample/tools/sample/main.c
index 66073352de0..2880265f845 100644
--- a/projects/sample/tools/sample/main.c
+++ b/projects/sample/tools/sample/main.c
@@ -8,7 +8,7 @@
int
main (int argc, char ** argv)
{
- printf ("%d\n", compute_sample (5));
- exit (0);
+ printf ("%d\n", compute_sample (5));
+ exit (0);
}