From d3460460c2f1dd2018047d0d8cd2900d31c92b5c Mon Sep 17 00:00:00 2001 From: Eve Entropia Date: Sat, 3 Apr 2010 22:40:24 +0200 Subject: [PATCH] fix comments --- projekte/protothreads/example.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projekte/protothreads/example.c b/projekte/protothreads/example.c index 6972328..a31115d 100644 --- a/projekte/protothreads/example.c +++ b/projekte/protothreads/example.c @@ -19,7 +19,7 @@ static int protothread1(struct pt *pt) { /* A protothread function must begin with PT_BEGIN() which takes a - * pointer to a struct pt. */ + pointer to a struct pt. */ PT_BEGIN(pt); /* We loop forever here. */ @@ -33,7 +33,7 @@ protothread1(struct pt *pt) } /* All protothread functions must end with PT_END() which takes a - * pointer to a struct pt. */ + pointer to a struct pt. */ PT_END(pt); } @@ -55,7 +55,7 @@ protothread2(struct pt *pt) } /* All protothread functions must end with PT_END() which takes a - * pointer to a struct pt. */ + pointer to a struct pt. */ PT_END(pt); }