]> Zhao Yanbai Git Server - minix.git/commitdiff
commands/decomp16: changed K&R to ANSI style 85/1185/1
authorBeletti <rhiguita@gmail.com>
Wed, 20 Nov 2013 21:55:11 +0000 (21:55 +0000)
committerThomas Cort <tcort@minix3.org>
Sun, 1 Dec 2013 20:57:07 +0000 (15:57 -0500)
Change-Id: Ibefd50187bcc87a24d7c4c895524be9fa55f493a

commands/decomp16/decomp16.c

index 1859e58649652b2b54527aa621e2f4b44e6c60e6..1cb349dc4a89130630587bd39ee6dafe2113a05d 100644 (file)
@@ -119,9 +119,7 @@ void getbits(void);
 void getpipe(void);
 void putpipe(unsigned u, int flag);
 
-int main(argc, argv)
-int argc;
-char **argv;
+int main(int argc, char **argv)
 {
   char c, *cp;
   int j, k, fdtmp;
@@ -295,8 +293,7 @@ void ffork()
  *
  * If s is a message, write it to stderr. Flush buffers if needed. Then exit.
  */
-void die(s)
-char *s;
+void die(char *s)
 {
   /* Flush stdout buffer if needed */
   if (obufind != 0) {
@@ -321,8 +318,7 @@ char *s;
  *
  * Put a char to stdout.
  */
-void myputc(c)
-unsigned c;
+void myputc(unsigned c)
 {
   obuf[obufind++] = c;
   if (obufind >= BUFSZ) {      /* if stdout buffer full */
@@ -414,9 +410,7 @@ void getpipe()
  *
  * put an index into the pipeline.
  */
-void putpipe(u, flag)
-unsigned u;
-int flag;
+void putpipe(unsigned u, int flag)
 {
   static unsigned short flags, *flagp;
   static int n = 0;            /* number of flags in flags */