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:
Xiang Xiao 2019-10-06 06:14:39 -06:00 committed by Gregory Nutt
parent ab7c5a7d4e
commit e806097c70
550 changed files with 664 additions and 2928 deletions

View file

@ -37,13 +37,11 @@ include $(TOPDIR)/Make.defs
# Mindlessly simple console loopack test
APPNAME = serloop
PROGNAME = serloop
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
MODULE = $(CONFIG_EXAMPLES_SERLOOP)
MAINSRC = serloop_main.c
CONFIG_XYZ_PROGNAME ?= serloop$(EXEEXT)
PROGNAME = $(CONFIG_XYZ_PROGNAME)
MODULE = CONFIG_EXAMPLES_SERLOOP
include $(APPDIR)/Application.mk

View file

@ -59,11 +59,7 @@
* serloop_main
****************************************************************************/
#ifdef BUILD_MODULE
int main(int argc, FAR char *argv[])
#else
int serloop_main(int argc, char *argv[])
#endif
{
#ifdef CONFIG_EXAMPLES_SERLOOP_BUFIO
int ch;