1 /*
2 * SPDX-License-Identifier: LGPL-2.1-or-later
3 *
4 * This file may be redistributed under the terms of the
5 * GNU Lesser General Public License.
6 **/
7 #ifndef UTIL_LINUX_C_STRTOD_H
8 #define UTIL_LINUX_C_STRTOD_H
9
10 extern double c_strtod(char const *str, char **end);
11
12 #endif