mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
21 lines
494 B
Diff
21 lines
494 B
Diff
From 7c83c012b33a16b11e3547894118fc013ec23ca0 Mon Sep 17 00:00:00 2001
|
|
From: Willy <jemand771@gmx.net>
|
|
Date: Tue, 5 May 2026 13:50:44 +0200
|
|
Subject: [PATCH] add missing cstring include
|
|
|
|
fails on newer compilers/toolchains without
|
|
---
|
|
src/cre2.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/cre2.cpp b/src/cre2.cpp
|
|
index 5a63b93..3b1ec21 100644
|
|
--- a/src/cre2.cpp
|
|
+++ b/src/cre2.cpp
|
|
@@ -18,6 +18,7 @@
|
|
|
|
#include <cstdlib>
|
|
#include <cstdio>
|
|
+#include <cstring>
|
|
#include <vector>
|