summaryrefslogtreecommitdiff
path: root/src/string
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 18:35:35 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 18:35:35 -0500
commitd5e1fa835e46dac2e1729e73c5e6743ef78714c7 (patch)
tree656a1c893b9930f444761c2811b1fc57fccd6802 /src/string
parent7cdd27f8dce39bed37a266fa578cfaedce0a015d (diff)
fix to compile under c89
Diffstat (limited to 'src/string')
-rw-r--r--src/string/strcpy.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/string/strcpy.c b/src/string/strcpy.c
index a7785c27..1f80e41b 100644
--- a/src/string/strcpy.c
+++ b/src/string/strcpy.c
@@ -2,8 +2,6 @@
#include "_safety.h"
#undef strcpy
-#undef strcpy
-
/** copy string **/
char * strcpy(char * restrict s1, const char * restrict s2)