1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
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
14