Blame config.h.in

Packit 667938
/* config.h.in.  Generated from configure.in by autoheader.  */
Packit 667938
Packit 667938
/* Define to 1 if you have the <inttypes.h> header file. */
Packit 667938
#undef HAVE_INTTYPES_H
Packit 667938
Packit 667938
/* Define to 1 if you have the <memory.h> header file. */
Packit 667938
#undef HAVE_MEMORY_H
Packit 667938
Packit 667938
/* Define to 1 if you have the <stdint.h> header file. */
Packit 667938
#undef HAVE_STDINT_H
Packit 667938
Packit 667938
/* Define to 1 if you have the <stdlib.h> header file. */
Packit 667938
#undef HAVE_STDLIB_H
Packit 667938
Packit 667938
/* Define to 1 if you have the <strings.h> header file. */
Packit 667938
#undef HAVE_STRINGS_H
Packit 667938
Packit 667938
/* Define to 1 if you have the <string.h> header file. */
Packit 667938
#undef HAVE_STRING_H
Packit 667938
Packit 667938
/* Define to 1 if you have the `strtoll' function. */
Packit 667938
#undef HAVE_STRTOLL
Packit 667938
Packit 667938
/* Define to 1 if you have the <sys/stat.h> header file. */
Packit 667938
#undef HAVE_SYS_STAT_H
Packit 667938
Packit 667938
/* Define to 1 if you have the <sys/types.h> header file. */
Packit 667938
#undef HAVE_SYS_TYPES_H
Packit 667938
Packit 667938
/* Define to 1 if you have the <unistd.h> header file. */
Packit 667938
#undef HAVE_UNISTD_H
Packit 667938
Packit 667938
/* How to print a long long */
Packit 667938
#undef LLD
Packit 667938
Packit 667938
/* long long format without % specifier */
Packit 667938
#undef LLD_FORMAT
Packit 667938
Packit 667938
/* Define to the address where bug reports for this package should be sent. */
Packit 667938
#undef PACKAGE_BUGREPORT
Packit 667938
Packit 667938
/* Define to the full name of this package. */
Packit 667938
#undef PACKAGE_NAME
Packit 667938
Packit 667938
/* Define to the full name and version of this package. */
Packit 667938
#undef PACKAGE_STRING
Packit 667938
Packit 667938
/* Define to the one symbol short name of this package. */
Packit 667938
#undef PACKAGE_TARNAME
Packit 667938
Packit 667938
/* Define to the version of this package. */
Packit 667938
#undef PACKAGE_VERSION
Packit 667938
Packit 667938
/* Define to 1 if you have the ANSI C header files. */
Packit 667938
#undef STDC_HEADERS
Packit 667938
Packit 667938
#ifndef HAVE_STRTOLL     
Packit 667938
long long int strtoll(const char *str, char **ptr, int base)
Packit 667938
{
Packit 667938
        long long int ll;
Packit 667938
        sscanf(str, LLD, &ll);
Packit 667938
        return ll;
Packit 667938
}
Packit 667938
#endif
Packit 667938