From bafccb2f57ac1a1852be2d6aafe33cf02d1630c1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 15:45:38 -0500 Subject: update dependencies --- src/strings/bcopy.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/strings/bcopy.c (limited to 'src/strings/bcopy.c') diff --git a/src/strings/bcopy.c b/src/strings/bcopy.c deleted file mode 100644 index 3cc0ac6b..00000000 --- a/src/strings/bcopy.c +++ /dev/null @@ -1,17 +0,0 @@ -#if 0 - -#include -#include - -int bcopy(const void *s1, void *s2, size_t n) -{ - memcpy(s1, s2, n); - return n; -} - -/* -XOPEN(400,700) -*/ - - -#endif -- cgit v1.2.1