summaryrefslogtreecommitdiff
path: root/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/config.h')
-rw-r--r--Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/config.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/config.h b/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/config.h
deleted file mode 100644
index a65d3d75e7b..00000000000
--- a/Build/source/texk/lcdf-typetools/lcdf-typetools-src/include/config.h
+++ /dev/null
@@ -1,49 +0,0 @@
-#ifndef LCDF_TYPETOOLS_CONFIG_H
-#define LCDF_TYPETOOLS_CONFIG_H 1
-
-#include <autoconf.h>
-
-/* Allow compilation on Windows (thanks, Fabrice Popineau). */
-#ifdef WIN32
-# ifdef __MINGW32__
-# include <winsock2.h>
-# include <windows.h>
-# else
-# include <win32lib.h>
-# endif
-#else
-# include <stddef.h>
-# define CDECL /* nothing */
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* Prototype strerror if necessary. */
-#if !HAVE_STRERROR
-char *strerror(int errno);
-#endif
-
-/* Prototype strnlen if necessary. */
-#if !HAVE_DECL_STRNLEN
-size_t strnlen(const char *s, size_t maxlen);
-#endif
-
-/* Prototype good_strtod if necessary. */
-#if HAVE_BROKEN_STRTOD
-double good_strtod(const char *s, char **endptr);
-#endif
-
-#ifdef __cplusplus
-}
-/* Get rid of a possible inline macro under C++. */
-# define inline inline
-
-/* Ignore `noexcept` if compiler is too old. */
-#if __cplusplus < 201103L
-#define noexcept
-#endif
-#endif
-
-#endif /* LCDF_TYPETOOLS_CONFIG_H */