diff --git a/native/MacEnvReader/printenv.c b/native/MacEnvReader/printenv.c index 58dde2be8f05..ae153e03a4dc 100644 --- a/native/MacEnvReader/printenv.c +++ b/native/MacEnvReader/printenv.c @@ -1,16 +1,12 @@ -// Copyright 2000-2021 JetBrains s.r.o. and contributors. -// Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. #include -int main(int argc __attribute__((unused)), - const char **argv __attribute__((unused)), - const char **env) { - +int main(int argc __attribute__((unused)), const char **argv __attribute__((unused)), const char **env) { const char **v = env; while (*v != NULL) { fputs(*v, stdout); - putc('\0', stdout); + fputc('\0', stdout); v++; }