9
0
Fork 0

Fix some problems with a preceding commit

This commit is contained in:
Gregory Nutt 2015-03-31 11:59:16 -06:00
parent 218a44ad33
commit 73a89efed0
5 changed files with 5 additions and 5 deletions

View File

@ -47,7 +47,7 @@ USERLIBS =
# Add libraries for board support
NUTTXLIBS = lib$(DELIM)libconfigs$(LIBEXT)
NUTTXLIBS += lib$(DELIM)libconfigs$(LIBEXT)
# Add libraries for syscall support.

View File

@ -47,7 +47,7 @@ USERLIBS =
# Add libraries for board support
NUTTXLIBS = lib$(DELIM)libconfigs$(LIBEXT)
NUTTXLIBS += lib$(DELIM)libconfigs$(LIBEXT)
# Add libraries for syscall support. The C library will be needed by
# both the kernel- and user-space builds. For now, the memory manager (mm)

View File

@ -47,7 +47,7 @@ USERLIBS =
# Add libraries for board support
NUTTXLIBS = lib$(DELIM)libconfigs$(LIBEXT)
NUTTXLIBS += lib$(DELIM)libconfigs$(LIBEXT)
# Add libraries for syscall support. The C library will be needed by
# both the kernel- and user-space builds. For now, the memory manager (mm)

View File

@ -136,7 +136,7 @@ void board_initialize(void);
* Description:
* Perform application specific initialization. This function is never
* called directly from application code, but only indirectly via the
* (non-standard) boardctl() interface
* (non-standard) boardctl() interface using the command BOARDIOC_INIT.
*
*****************************************************************************/

View File

@ -187,7 +187,7 @@ uintptr_t STUB_aio_cancel(int nbr, uintptr_t parm1, uintptr_t parm2);
/* Board support */
uintptr-t STUB_boardctl(int nbr, uintptr_t parm1, uinptr_1 parm2);
uintptr_t STUB_boardctl(int nbr, uintptr_t parm1, uintptr_t parm2);
/* The following are defined if file descriptors are enabled */