diff --git a/reactos/lib/crt/crt.xml b/reactos/lib/crt/crt.xml
index cb231600e04..ba0514d4826 100644
--- a/reactos/lib/crt/crt.xml
+++ b/reactos/lib/crt/crt.xml
@@ -344,7 +344,6 @@
strdup.c
strerror.c
strncoll.c
- strpbrk.c
strrev.c
strset.c
strstr.c
diff --git a/reactos/lib/crt/string/strpbrk.c b/reactos/lib/crt/string/strpbrk.c
deleted file mode 100644
index c3ce6006734..00000000000
--- a/reactos/lib/crt/string/strpbrk.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include
-
-
-/*
- * @implemented
- */
-char *
-strpbrk(const char *s1, const char *s2)
-{
- const char *scanp;
- int c, sc;
-
- while ((c = *s1++) != 0)
- {
- for (scanp = s2; (sc = *scanp++) != 0;)
- if (sc == c)
- return (char *)(s1 - 1);
- }
- return 0;
-}
diff --git a/reactos/lib/ntdll/ntdll.xml b/reactos/lib/ntdll/ntdll.xml
index 96ac96c6f39..5ac88fcd8d1 100644
--- a/reactos/lib/ntdll/ntdll.xml
+++ b/reactos/lib/ntdll/ntdll.xml
@@ -84,7 +84,6 @@
stricmp.c
strlwr.c
strnicmp.c
- strpbrk.c
strstr.c
strupr.c
wstring.c
diff --git a/reactos/lib/ntdll/string/strpbrk.c b/reactos/lib/ntdll/string/strpbrk.c
deleted file mode 100644
index c3ce6006734..00000000000
--- a/reactos/lib/ntdll/string/strpbrk.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include
-
-
-/*
- * @implemented
- */
-char *
-strpbrk(const char *s1, const char *s2)
-{
- const char *scanp;
- int c, sc;
-
- while ((c = *s1++) != 0)
- {
- for (scanp = s2; (sc = *scanp++) != 0;)
- if (sc == c)
- return (char *)(s1 - 1);
- }
- return 0;
-}