aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tokenize.c
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-21 10:58:28 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:34 -0700
commita8971acb6cbfa8cfa6f5105340fcdee13c649590 (patch)
tree3011554bbfa156146b6b86c91754a771c5e0c9ae /tokenize.c
parentf1d060b1cf8e9c46f7390c54d8eee9d4b51c028c (diff)
downloadsparse-dev-a8971acb6cbfa8cfa6f5105340fcdee13c649590.tar.gz
Add copyright statements and file comments. Add a FAQ, README, and
placeholder LICENSE file.
Diffstat (limited to 'tokenize.c')
-rw-r--r--tokenize.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/tokenize.c b/tokenize.c
index aee42488..a2a63bc9 100644
--- a/tokenize.c
+++ b/tokenize.c
@@ -1,10 +1,8 @@
/*
- * This is a really stupid C tokenizer, intended to run after the
- * preprocessor.
+ * This is a really stupid C tokenizer. It doesn't do any include
+ * files or anything complex at all. That's the pre-processor.
*
- * A smart preprocessor would be integrated and pass the compiler
- * the tokenized input directly, but lacking that we just tokenize
- * the preprocessor output.
+ * Copyright (C) 2003 Linus Torvalds, all rights reserved.
*/
#include <stdio.h>
#include <stdlib.h>