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
|
|
@ -39,15 +39,11 @@ include $(TOPDIR)/Make.defs
|
|||
|
||||
MAINSRC = tc_main.c
|
||||
|
||||
CONFIG_XYZ_PROGNAME ?= touchscreen$(EXEEXT)
|
||||
PROGNAME = $(CONFIG_XYZ_PROGNAME)
|
||||
|
||||
# Touchscreen built-in application info
|
||||
|
||||
APPNAME = tc
|
||||
PROGNAME = tc
|
||||
PRIORITY = SCHED_PRIORITY_DEFAULT
|
||||
STACKSIZE = 2048
|
||||
|
||||
MODULE = CONFIG_EXAMPLES_TOUCHSCREEN
|
||||
MODULE = $(CONFIG_EXAMPLES_TOUCHSCREEN)
|
||||
|
||||
include $(APPDIR)/Application.mk
|
||||
|
|
|
|||
|
|
@ -88,11 +88,7 @@
|
|||
* Name: tc_main
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef BUILD_MODULE
|
||||
int main(int argc, FAR char *argv[])
|
||||
#else
|
||||
int tc_main(int argc, char *argv[])
|
||||
#endif
|
||||
{
|
||||
#ifdef CONFIG_EXAMPLES_TOUCHSCREEN_MOUSE
|
||||
struct mouse_report_s sample;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue