mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Application.mk and main.c files: Change builtin's entry point from main to xxx_main by macro expansion. This change make the entry point fully compliant with POSIX/ANSI standard.
This commit is contained in:
parent
ab7c5a7d4e
commit
e806097c70
550 changed files with 664 additions and 2928 deletions
|
|
@ -37,15 +37,11 @@ include $(TOPDIR)/Make.defs
|
|||
|
||||
# cJSON built-in application info
|
||||
|
||||
APPNAME = json
|
||||
PROGNAME = json
|
||||
PRIORITY = SCHED_PRIORITY_DEFAULT
|
||||
STACKSIZE = 2048
|
||||
MODULE = $(CONFIG_EXAMPLES_JSON)
|
||||
|
||||
MAINSRC = json_main.c
|
||||
|
||||
CONFIG_XYZ_PROGNAME ?= json$(EXEEXT)
|
||||
PROGNAME = $(CONFIG_XYZ_PROGNAME)
|
||||
|
||||
MODULE = CONFIG_EXAMPLES_JSON
|
||||
|
||||
include $(APPDIR)/Application.mk
|
||||
|
|
|
|||
|
|
@ -237,11 +237,7 @@ static void create_objects(void)
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef BUILD_MODULE
|
||||
int main(int argc, FAR char *argv[])
|
||||
#else
|
||||
int json_main(int argc, const char *argv[])
|
||||
#endif
|
||||
{
|
||||
/* a bunch of json: */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue