udev: String substitutions can be done in ENV, too
[systemd_ALT.git] / src / basic / missing_stdlib.h
blob8c76f93eb2f4af3e7180d6669b02ff5bcac4fb6f
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
4 #include <stdlib.h>
6 /* stdlib.h */
7 #if !HAVE_SECURE_GETENV
8 # if HAVE___SECURE_GETENV
9 # define secure_getenv __secure_getenv
10 # else
11 # error "neither secure_getenv nor __secure_getenv are available"
12 # endif
13 #endif