summaryrefslogtreecommitdiff
path: root/sunrpc/rpc_scan.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2010-06-27 19:39:01 -0700
committerUlrich Drepper <drepper@redhat.com>2010-06-27 19:39:01 -0700
commita3d731d344988f0badcd38397e412bc994682d97 (patch)
tree9a4e5d634b29d29fdd1431f1bb8d09da69670089 /sunrpc/rpc_scan.h
parentcb636bb25544c7f4d23a454ca79bb9d75d1583a3 (diff)
Fix whitespaces.
Diffstat (limited to 'sunrpc/rpc_scan.h')
-rw-r--r--sunrpc/rpc_scan.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/sunrpc/rpc_scan.h b/sunrpc/rpc_scan.h
index 74d77b0fbb..af02479e79 100644
--- a/sunrpc/rpc_scan.h
+++ b/sunrpc/rpc_scan.h
@@ -31,11 +31,11 @@
/* @(#)rpc_scan.h 1.3 90/08/29 (C) 1987 SMI */
/*
- * rpc_scan.h, Definitions for the RPCL scanner
+ * rpc_scan.h, Definitions for the RPCL scanner
*/
/*
- * kinds of tokens
+ * kinds of tokens
*/
enum tok_kind {
TOK_IDENT,
@@ -81,7 +81,7 @@ enum tok_kind {
typedef enum tok_kind tok_kind;
/*
- * a token
+ * a token
*/
struct token {
tok_kind kind;
@@ -91,7 +91,7 @@ typedef struct token token;
/*
- * routine interface
+ * routine interface
*/
void scan(tok_kind expect, token *tokp);
void scan2(tok_kind expect1, tok_kind expect2, token *tokp);
@@ -104,4 +104,3 @@ void expected1(tok_kind exp1) __attribute__ ((noreturn));
void expected2(tok_kind exp1, tok_kind exp2) __attribute__ ((noreturn));
void expected3(tok_kind exp1, tok_kind exp2, tok_kind exp3)
__attribute__ ((noreturn));
-