initial commit

This commit is contained in:
2022-10-31 21:37:30 +09:00
commit 4de58743c2
1251 changed files with 252671 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/*
* 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