]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/missing_stdlib.h
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / basic / missing_stdlib.h
CommitLineData
470f348b
YW
1/* SPDX-License-Identifier: LGPL-2.1+ */
2#pragma once
3
4#include <stdlib.h>
5
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