/* libpicosdk/atexit.c - Remove newlib atexit() machinery * * Copyright (C) 2025 Luke T. Shumaker * SPDX-License-Identifier: AGPL-3.0-or-later */ /* pico_clib_interface/newlib_interface.c arranges to never call * exitprocs, so let's remove the installation machinery. */ int __wrap_atexit (void (*fn) (void)) { return 0; }