Al's no-double-empty-lines crusade

This commit is contained in:
Ben Gras
2005-08-22 15:08:27 +00:00
parent 72fbaa659b
commit a17d7c827b
50 changed files with 0 additions and 275 deletions

View File

@@ -39,7 +39,6 @@ char MaxPath[PATH_MAX]; /* Same for path */
char ToLongName[NAME_MAX + 2]; /* Name of maximum +1 length */
char ToLongPath[PATH_MAX + 1]; /* Same for path, both too long */
void main(argc, argv)
int argc;
char *argv[];
@@ -165,7 +164,6 @@ void test24a()
if (closedir(dirp) != 0) e(34); /* close parent's foo */
}
void test24b()
{
/* See what happens with too many dir's open. Check if file size seems ok,
@@ -245,7 +243,6 @@ void test24b()
if (closedir(dirp[2]) != 0) e(27);
}
void test24c()
{
/* Test whether wrong things go wrong right. */
@@ -349,7 +346,6 @@ DIR *dirp; /* (`f1', `f3', `f5', `.', `..') */
subtest = oldsubtest;
}
void makelongnames()
{
register int i;
@@ -371,7 +367,6 @@ void makelongnames()
ToLongPath[PATH_MAX] = '\0'; /* inc ToLongPath by one */
}
void e(n)
int n;
{
@@ -389,7 +384,6 @@ int n;
errno = 0;
}
void quit()
{
Chdir("..");