We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cdaff8 commit c783abeCopy full SHA for c783abe
1 file changed
tests/unit/unistd.c
@@ -87,13 +87,9 @@ static void test_ftruncate(void) {
87
unlink(path);
88
}
89
90
-static void test_isatty(void) {
91
- printf("%d\n", isatty(0));
92
-}
+static void test_isatty(void) { printf("%d\n", isatty(0)); }
93
94
-static void test_geteuid(void) {
95
- printf("%u\n", geteuid());
96
+static void test_geteuid(void) { printf("%u\n", geteuid()); }
97
98
static void test_gethostname(void) {
99
char name[256];
0 commit comments