aboutsummaryrefslogtreecommitdiffstats
path: root/app/nginx/src/os/win32/ngx_dlopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/nginx/src/os/win32/ngx_dlopen.c')
-rw-r--r--app/nginx/src/os/win32/ngx_dlopen.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/nginx/src/os/win32/ngx_dlopen.c b/app/nginx/src/os/win32/ngx_dlopen.c
deleted file mode 100644
index 804f49d..0000000
--- a/app/nginx/src/os/win32/ngx_dlopen.c
+++ /dev/null
@@ -1,22 +0,0 @@
-
-/*
- * Copyright (C) Maxim Dounin
- * Copyright (C) Nginx, Inc.
- */
-
-
-#include <ngx_config.h>
-#include <ngx_core.h>
-
-
-char *
-ngx_dlerror(void)
-{
- u_char *p;
- static u_char errstr[NGX_MAX_ERROR_STR];
-
- p = ngx_strerror(ngx_errno, errstr, NGX_MAX_ERROR_STR);
- *p = '\0';
-
- return (char *) errstr;
-}