47a8676625
test files in lib go to src/tests include/ goes to local/ lib/*.c goes to local/ Signed-off-by: Craig Small <csmall@dropbear.xyz>
13 lines
317 B
C
13 lines
317 B
C
/*
|
|
* This header was copied from util-linux at fall 2011.
|
|
*/
|
|
|
|
#ifndef PROCPS_NG_STRUTILS
|
|
#define PROCPS_NG_STRUTILS
|
|
|
|
extern long strtol_or_err(const char *str, const char *errmesg);
|
|
extern double strtod_or_err(const char *str, const char *errmesg);
|
|
double strtod_nol_or_err(char *str, const char *errmesg);
|
|
|
|
#endif
|