Al's no-double-empty-lines crusade
This commit is contained in:
@@ -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("..");
|
||||
|
||||
Reference in New Issue
Block a user