mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
11 lines
604 B
Diff
11 lines
604 B
Diff
--- a/src/headers.h
|
|
+++ b/src/headers.h
|
|
@@ -56,7 +56,7 @@ extern DECLSPEC int SDLCALL SDL_GetGamma(float *red, float *green, float *blue);
|
|
#define textdomain(x) while(false)
|
|
#endif
|
|
|
|
-#if !defined(OpenBSD) && !defined(FreeBSD) && !defined(__APPLE__)
|
|
+#if !defined(OpenBSD) && !defined(FreeBSD) && !defined(__APPLE__) && !(defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 38)
|
|
static inline void strlcat(char *dest, const char *src, size_t n) { strncat(dest, src, n - 1); }
|
|
static inline void strlcpy(char *dest, const char *src, size_t n) { strncpy(dest, src, n); dest[n - 1] = 0; }
|
|
#endif
|