summaryrefslogtreecommitdiff
path: root/rgo/src/strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'rgo/src/strdup.c')
-rw-r--r--rgo/src/strdup.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/rgo/src/strdup.c b/rgo/src/strdup.c
deleted file mode 100644
index 786de55..0000000
--- a/rgo/src/strdup.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- Copyright 2022 Gabriel Jensen.
- This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
- If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
-*/
-
-#include <rgo-priv.h>
-
-#include <stdlib.h>
-
-char * rgo_strdup(sus_attr_unused char const * const _str) {
-#if !defined(rgo_priv_nostdlib)
- return rgo_memdup(_str,rgo_strlen(_str) + rgo_typlit_usz(0x1));
-#else
- return NULL;
-#endif
-}