mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
As part of our efforts to clean up and simplify libguestfs, removing gnulib deletes a large dependency that we mostly no longer use and causes problems for new users trying to build the library from source. A few modules from gnulib are still used (under a compatible license) and these are copied into gnulib/lib/
11 lines
303 B
C
11 lines
303 B
C
/* Note the license of this file is "GPL". It is used in the daemon
|
|
* and in guestfish which have a compatible license.
|
|
*/
|
|
|
|
#define __strtol strtoll
|
|
#define __strtol_t long long int
|
|
#define __xstrtol xstrtoll
|
|
#define STRTOL_T_MINIMUM LLONG_MIN
|
|
#define STRTOL_T_MAXIMUM LLONG_MAX
|
|
#include "xstrtol.c"
|