X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fcpydgst.c;h=a9e5bc6e4aafebe9cbf0d49a450eacbd88064835;hp=86211cf64ffb587eb73714129b2f1f8223d1102a;hb=2abb9a7cfb0930e27062088734d306e7d78e4cc2;hpb=714b5c530ece27ea2835a313013f5b770163403c diff --git a/sbr/cpydgst.c b/sbr/cpydgst.c index 86211cf..a9e5bc6 100644 --- a/sbr/cpydgst.c +++ b/sbr/cpydgst.c @@ -7,6 +7,7 @@ ** complete copyright information. */ +#include #include /* @@ -45,18 +46,18 @@ cpydgst(int in, int out, char *ifile, char *ofile) if (*cp == '\0') continue; switch (state) { - case S1: - if (*cp == '-') { - output('-'); - output(' '); - } - state = S2; /* fall */ + case S1: + if (*cp == '-') { + output('-'); + output(' '); + } + state = S2; /* fall */ - case S2: - output(*cp); - if (*cp == '\n') - state = S1; - break; + case S2: + output(*cp); + if (*cp == '\n') + state = S1; + break; } }