aboutsummaryrefslogtreecommitdiffstats
path: root/app/nginx/src/os/unix/ngx_dlopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/nginx/src/os/unix/ngx_dlopen.c')
-rw-r--r--app/nginx/src/os/unix/ngx_dlopen.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/nginx/src/os/unix/ngx_dlopen.c b/app/nginx/src/os/unix/ngx_dlopen.c
deleted file mode 100644
index a0efc69..0000000
--- a/app/nginx/src/os/unix/ngx_dlopen.c
+++ /dev/null
@@ -1,28 +0,0 @@
-
-/*
- * Copyright (C) Maxim Dounin
- * Copyright (C) Nginx, Inc.
- */
-
-
-#include <ngx_config.h>
-#include <ngx_core.h>
-
-
-#if (NGX_HAVE_DLOPEN)
-
-char *
-ngx_dlerror(void)
-{
- char *err;
-
- err = (char *) dlerror();
-
- if (err == NULL) {
- return "";
- }
-
- return err;
-}
-
-#endif