| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
|---|---|
| 2 | |
| 3 | #include "mosapi.h" |
| 4 | |
| 5 | int main(int argc, char **argv) |
| 6 | { |
| 7 | MOS_UNUSED(argc); |
| 8 | MOS_UNUSED(argv); |
| 9 | |
| 10 | // dump the environment variables |
| 11 | for (char **env = environ; *env != NULL; env++) |
| 12 | { |
| 13 | printf(format: "%s\n", *env); |
| 14 | } |
| 15 | |
| 16 | return 0; |
| 17 | } |
| 18 |