Remove leading blank lines from function bodies.

This resolves #535.
This commit is contained in:
Jason Evans
2017-01-13 10:35:35 -08:00
parent 87e81e609b
commit ffbb7dac3d
103 changed files with 0 additions and 611 deletions

View File

@@ -63,7 +63,6 @@ TEST_END
int
main(void)
{
return (test(
test_MALLOCX_ARENA));
}

View File

@@ -10,7 +10,6 @@
static void
purge(void)
{
assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
"Unexpected mallctl error");
}
@@ -130,7 +129,6 @@ TEST_END
int
main(void)
{
return (test(
test_alignment_errors,
test_oom_errors,

View File

@@ -98,7 +98,6 @@ label_ENOENT:
TEST_BEGIN(test_main_thread)
{
thd_start(NULL);
}
TEST_END
@@ -115,7 +114,6 @@ TEST_END
int
main(void)
{
/* Run tests multiple times to check for bad interactions. */
return (test(
test_main_thread,

View File

@@ -12,7 +12,6 @@ TEST_END
int
main()
{
return (test(
test_basic));
}

View File

@@ -176,7 +176,6 @@ TEST_END
int
main(void)
{
return (test(
test_extent_manual_hook,
test_extent_auto_hook));

View File

@@ -20,7 +20,6 @@ get_nsizes_impl(const char *cmd)
static unsigned
get_nlarge(void)
{
return (get_nsizes_impl("arenas.nlextents"));
}
@@ -46,7 +45,6 @@ get_size_impl(const char *cmd, size_t ind)
static size_t
get_large_size(size_t ind)
{
return (get_size_impl("arenas.lextent.0.size", ind));
}
@@ -58,7 +56,6 @@ get_large_size(size_t ind)
static void
purge(void)
{
assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
"Unexpected mallctl error");
}
@@ -225,7 +222,6 @@ TEST_END
int
main(void)
{
return (test(
test_overflow,
test_oom,

View File

@@ -43,7 +43,6 @@ TEST_END
int
main(void)
{
return (test(
test_overflow));
}

View File

@@ -10,7 +10,6 @@
static void
purge(void)
{
assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
"Unexpected mallctl error");
}
@@ -124,7 +123,6 @@ TEST_END
int
main(void)
{
return (test(
test_alignment_errors,
test_oom_errors,

View File

@@ -16,7 +16,6 @@ get_nsizes_impl(const char *cmd)
static unsigned
get_nlarge(void)
{
return (get_nsizes_impl("arenas.nlextents"));
}
@@ -42,7 +41,6 @@ get_size_impl(const char *cmd, size_t ind)
static size_t
get_large_size(size_t ind)
{
return (get_size_impl("arenas.lextent.0.size", ind));
}
@@ -249,7 +247,6 @@ TEST_END
int
main(void)
{
return (test(
test_grow_and_shrink,
test_zero,

View File

@@ -50,7 +50,6 @@ TEST_END
int
main(void)
{
return (test(
test_basic,
test_alignment_and_size));

View File

@@ -75,7 +75,6 @@ TEST_END
int
main(void)
{
return (test(
test_thread_arena));
}

View File

@@ -86,7 +86,6 @@ label_ENOENT:
TEST_BEGIN(test_main_thread)
{
thd_start(NULL);
}
TEST_END
@@ -103,7 +102,6 @@ TEST_END
int
main(void)
{
/* Run tests multiple times to check for bad interactions. */
return (test(
test_main_thread,

View File

@@ -87,14 +87,12 @@ get_nsizes_impl(const char *cmd)
static unsigned
get_nsmall(void)
{
return (get_nsizes_impl("arenas.nbins"));
}
static unsigned
get_nlarge(void)
{
return (get_nsizes_impl("arenas.nlextents"));
}
@@ -120,14 +118,12 @@ get_size_impl(const char *cmd, size_t ind)
static size_t
get_small_size(size_t ind)
{
return (get_size_impl("arenas.bin.0.size", ind));
}
static size_t
get_large_size(size_t ind)
{
return (get_size_impl("arenas.lextent.0.size", ind));
}
@@ -397,7 +393,6 @@ TEST_END
int
main(void)
{
return (test(
test_same_size,
test_extra_no_move,