changed int-functions to void-functions
authoreck <none@none>
Tue, 11 Sep 1990 10:24:15 +0000 (10:24 +0000)
committereck <none@none>
Tue, 11 Sep 1990 10:24:15 +0000 (10:24 +0000)
lang/cem/libcc.ansi/misc/getdents.c
lang/cem/libcc.ansi/misc/getgrent.c

index c7c5621..e9d34c1 100644 (file)
@@ -196,7 +196,7 @@ getdents(int fildes, char *buf, unsigned nbyte)     /* returns # bytes read;
                        }
                /* else fall through into emulation */
 
-/*     case no:        /* fall through into emulation */
+/*     case no:*/      /* fall through into emulation */
                }
 #endif
 
index 9fc320d..758a75a 100644 (file)
@@ -45,7 +45,7 @@ setgrent(void)
         return _gfd;
 }
 
-int
+void
 endgrent(void) 
 {
         if (_gfd >= 0)
@@ -79,7 +79,7 @@ getline(void)
         return 1;
 }
 
-static int
+static void
 skip_period(void) 
 {
         while (*_buf && *_buf != ':')