Update for corrected name of standard header file. Should be dlfcn.h, not dllfcn.h. I am surprised no one ever noticed before now.

This commit is contained in:
Gregory Nutt
2019-02-09 14:10:16 -06:00
parent 87f42accc6
commit 43e79ac329
5 changed files with 7 additions and 7 deletions

View File

@@ -46,7 +46,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include <dllfcn.h>
#include <dlfcn.h>
#include <errno.h>
#include <debug.h>
@@ -65,8 +65,8 @@
* are required -- only the more obvious.
*/
#ifndef CONFIG_LIBC_DLLFCN
# error "You must select CONFIG_LIBC_DLLFCN in your configuration file"
#ifndef CONFIG_LIBC_DLFCN
# error "You must select CONFIG_LIBC_DLFCN in your configuration file"
#endif
#ifdef CONFIG_EXAMPLES_SOTEST_BUILTINFS