summaryrefslogtreecommitdiff
path: root/src/bin/proxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/proxy.c')
-rw-r--r--src/bin/proxy.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/bin/proxy.c b/src/bin/proxy.c
index b980a48..4fd6681 100644
--- a/src/bin/proxy.c
+++ b/src/bin/proxy.c
@@ -28,15 +28,6 @@
#define STDIN fileno(stdin)
-static char *
-strdup(char *string)
-{
- char *result = malloc(strlen(string));
- assert(result != NULL);
- strcpy(result, string);
- return result;
-}
-
/**
* Reads a single line of text from the specified file descriptor
* @fd File descriptor to read from