clang-format

This commit is contained in:
2024-09-10 13:03:02 -04:00
parent 53c617d779
commit d66450e427
381 changed files with 28864 additions and 34170 deletions

View File

@@ -37,25 +37,19 @@
#include "test.h"
static
void
chdir_empty(void)
{
int rv;
static void chdir_empty(void) {
int rv;
/*
* This is actually valid by some interpretations.
*/
/*
* This is actually valid by some interpretations.
*/
report_begin("chdir to empty string");
rv = chdir("");
report_check2(rv, errno, EINVAL, 0);
report_begin("chdir to empty string");
rv = chdir("");
report_check2(rv, errno, EINVAL, 0);
}
void
test_chdir(void)
{
test_chdir_path();
chdir_empty();
void test_chdir(void) {
test_chdir_path();
chdir_empty();
}